parse static method

ContextElement? parse(
  1. Map<String, dynamic>? json
)

Implementation

static ContextElement? parse(Map<String, dynamic>? json) =>
    json == null ? null : ContextElement._fromJson(json);