fromJson static method
Returns a new CallEndedEvent instance and imports its values from
value if it's a Map, null otherwise.
Implementation
// ignore: prefer_constructors_over_static_methods
static CallEndedEvent? 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 "CallEndedEvent[call]" is missing from JSON.');
assert(json[r'call'] != null,
'Required key "CallEndedEvent[call]" has a null value in JSON.');
assert(json.containsKey(r'call_cid'),
'Required key "CallEndedEvent[call_cid]" is missing from JSON.');
assert(json[r'call_cid'] != null,
'Required key "CallEndedEvent[call_cid]" has a null value in JSON.');
assert(json.containsKey(r'created_at'),
'Required key "CallEndedEvent[created_at]" is missing from JSON.');
assert(json[r'created_at'] != null,
'Required key "CallEndedEvent[created_at]" has a null value in JSON.');
assert(json.containsKey(r'type'),
'Required key "CallEndedEvent[type]" is missing from JSON.');
assert(json[r'type'] != null,
'Required key "CallEndedEvent[type]" has a null value in JSON.');
return true;
}());
return CallEndedEvent(
call: CallResponse.fromJson(json[r'call'])!,
callCid: mapValueOfType<String>(json, r'call_cid')!,
createdAt: mapDateTime(json, r'created_at', r'')!,
members: MemberResponse.listFromJson(json[r'members']),
reason: mapValueOfType<String>(json, r'reason'),
type: mapValueOfType<String>(json, r'type')!,
user: UserResponse.fromJson(json[r'user']),
);
}
return null;
}