fromJson static method
Returns a new CallModerationWarningEvent instance and imports its values from
value if it's a Map, null otherwise.
Implementation
// ignore: prefer_constructors_over_static_methods
static CallModerationWarningEvent? 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_cid'),
'Required key "CallModerationWarningEvent[call_cid]" is missing from JSON.');
assert(json[r'call_cid'] != null,
'Required key "CallModerationWarningEvent[call_cid]" has a null value in JSON.');
assert(json.containsKey(r'created_at'),
'Required key "CallModerationWarningEvent[created_at]" is missing from JSON.');
assert(json[r'created_at'] != null,
'Required key "CallModerationWarningEvent[created_at]" has a null value in JSON.');
assert(json.containsKey(r'custom'),
'Required key "CallModerationWarningEvent[custom]" is missing from JSON.');
assert(json[r'custom'] != null,
'Required key "CallModerationWarningEvent[custom]" has a null value in JSON.');
assert(json.containsKey(r'message'),
'Required key "CallModerationWarningEvent[message]" is missing from JSON.');
assert(json[r'message'] != null,
'Required key "CallModerationWarningEvent[message]" has a null value in JSON.');
assert(json.containsKey(r'type'),
'Required key "CallModerationWarningEvent[type]" is missing from JSON.');
assert(json[r'type'] != null,
'Required key "CallModerationWarningEvent[type]" has a null value in JSON.');
assert(json.containsKey(r'user_id'),
'Required key "CallModerationWarningEvent[user_id]" is missing from JSON.');
assert(json[r'user_id'] != null,
'Required key "CallModerationWarningEvent[user_id]" has a null value in JSON.');
return true;
}());
return CallModerationWarningEvent(
callCid: mapValueOfType<String>(json, r'call_cid')!,
createdAt: mapDateTime(json, r'created_at', r'')!,
custom: mapCastOfType<String, Object>(json, r'custom')!,
message: mapValueOfType<String>(json, r'message')!,
type: mapValueOfType<String>(json, r'type')!,
userId: mapValueOfType<String>(json, r'user_id')!,
);
}
return null;
}