fromJson static method
Inherited by: JsonValueArray JsonValueBoolean JsonValueNull JsonValueNumber JsonValueObject JsonValueString
Implementation
static JsonValueObject? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return JsonValueObject(
members: List<JsonObjectMember>.from(
tdListFromJson(json['members'])
.map((item) => JsonObjectMember.fromJson(tdMapFromJson(item)))
.whereType<JsonObjectMember>(),
),
);
}