fromJson static method
Returns a new MmSearchUsersRequest instance and imports its values from
value
if it's a Map, null otherwise.
Implementation
// ignore: prefer_constructors_over_static_methods
static MmSearchUsersRequest? 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 "MmSearchUsersRequest[$key]" is missing from JSON.');
assert(json[key] != null, 'Required key "MmSearchUsersRequest[$key]" has a null value in JSON.');
});
return true;
}());
return MmSearchUsersRequest(
term: mapValueOfType<String>(json, r'term')!,
teamId: mapValueOfType<String>(json, r'team_id'),
notInTeamId: mapValueOfType<String>(json, r'not_in_team_id'),
inChannelId: mapValueOfType<String>(json, r'in_channel_id'),
notInChannelId: mapValueOfType<String>(json, r'not_in_channel_id'),
inGroupId: mapValueOfType<String>(json, r'in_group_id'),
groupConstrained: mapValueOfType<bool>(json, r'group_constrained'),
allowInactive: mapValueOfType<bool>(json, r'allow_inactive'),
withoutTeam: mapValueOfType<bool>(json, r'without_team'),
limit: mapValueOfType<int>(json, r'limit') ?? 100,
);
}
return null;
}