fromJson static method
Returns a new GetOrCreateCallResponse instance and imports its values from
value if it's a Map, null otherwise.
Implementation
// ignore: prefer_constructors_over_static_methods
static GetOrCreateCallResponse? fromJson(dynamic value) {
if (value is Map) {
final json = value.cast<String, dynamic>();
// Ensure that the map contains the required keys.
// Note 1: the values aren't checked for validity beyond being non-null.
// Note 2: this code is stripped in release mode!
assert(() {
assert(json.containsKey(r'call'),
'Required key "GetOrCreateCallResponse[call]" is missing from JSON.');
assert(json[r'call'] != null,
'Required key "GetOrCreateCallResponse[call]" has a null value in JSON.');
assert(json.containsKey(r'created'),
'Required key "GetOrCreateCallResponse[created]" is missing from JSON.');
assert(json[r'created'] != null,
'Required key "GetOrCreateCallResponse[created]" has a null value in JSON.');
assert(json.containsKey(r'duration'),
'Required key "GetOrCreateCallResponse[duration]" is missing from JSON.');
assert(json[r'duration'] != null,
'Required key "GetOrCreateCallResponse[duration]" has a null value in JSON.');
assert(json.containsKey(r'members'),
'Required key "GetOrCreateCallResponse[members]" is missing from JSON.');
assert(json[r'members'] != null,
'Required key "GetOrCreateCallResponse[members]" has a null value in JSON.');
assert(json.containsKey(r'own_capabilities'),
'Required key "GetOrCreateCallResponse[own_capabilities]" is missing from JSON.');
assert(json[r'own_capabilities'] != null,
'Required key "GetOrCreateCallResponse[own_capabilities]" has a null value in JSON.');
return true;
}());
return GetOrCreateCallResponse(
call: CallResponse.fromJson(json[r'call'])!,
created: mapValueOfType<bool>(json, r'created')!,
duration: mapValueOfType<String>(json, r'duration')!,
members: MemberResponse.listFromJson(json[r'members']),
membership: MemberResponse.fromJson(json[r'membership']),
ownCapabilities: OwnCapability.listFromJson(json[r'own_capabilities']),
);
}
return null;
}