fromJson static method
Returns a new MmChannelWithTeamData instance and imports its values from
value
if it's a Map, null otherwise.
Implementation
// ignore: prefer_constructors_over_static_methods
static MmChannelWithTeamData? 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(() {
requiredKeys.forEach((key) {
assert(json.containsKey(key), 'Required key "MmChannelWithTeamData[$key]" is missing from JSON.');
assert(json[key] != null, 'Required key "MmChannelWithTeamData[$key]" has a null value in JSON.');
});
return true;
}());
return MmChannelWithTeamData(
id: mapValueOfType<String>(json, r'id'),
createAt: mapValueOfType<int>(json, r'create_at'),
updateAt: mapValueOfType<int>(json, r'update_at'),
deleteAt: mapValueOfType<int>(json, r'delete_at'),
teamId: mapValueOfType<String>(json, r'team_id'),
type: mapValueOfType<String>(json, r'type'),
displayName: mapValueOfType<String>(json, r'display_name'),
name: mapValueOfType<String>(json, r'name'),
header: mapValueOfType<String>(json, r'header'),
purpose: mapValueOfType<String>(json, r'purpose'),
lastPostAt: mapValueOfType<int>(json, r'last_post_at'),
totalMsgCount: mapValueOfType<int>(json, r'total_msg_count'),
extraUpdateAt: mapValueOfType<int>(json, r'extra_update_at'),
creatorId: mapValueOfType<String>(json, r'creator_id'),
teamDisplayName: mapValueOfType<String>(json, r'team_display_name'),
teamName: mapValueOfType<String>(json, r'team_name'),
teamUpdateAt: mapValueOfType<int>(json, r'team_update_at'),
policyId: mapValueOfType<String>(json, r'policy_id'),
);
}
return null;
}