parse static method

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

Implementation

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