fromJson static method
MmTeam?
fromJson(
- dynamic value
)
Returns a new MmTeam instance and imports its values from
value
if it's a Map, null otherwise.
Implementation
// ignore: prefer_constructors_over_static_methods
static MmTeam? 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 "MmTeam[$key]" is missing from JSON.');
assert(json[key] != null, 'Required key "MmTeam[$key]" has a null value in JSON.');
});
return true;
}());
return MmTeam(
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'),
displayName: mapValueOfType<String>(json, r'display_name'),
name: mapValueOfType<String>(json, r'name'),
description: mapValueOfType<String>(json, r'description'),
email: mapValueOfType<String>(json, r'email'),
type: mapValueOfType<String>(json, r'type'),
allowedDomains: mapValueOfType<String>(json, r'allowed_domains'),
inviteId: mapValueOfType<String>(json, r'invite_id'),
allowOpenInvite: mapValueOfType<bool>(json, r'allow_open_invite'),
policyId: mapValueOfType<String>(json, r'policy_id'),
);
}
return null;
}