mapListFromJson static method
Map<String, List<CreateMatchRequestBody> >
mapListFromJson(
- dynamic json, {
- bool growable = false,
Implementation
static Map<String, List<CreateMatchRequestBody>> mapListFromJson(dynamic json, {bool growable = false,}) {
final map = <String, List<CreateMatchRequestBody>>{};
if (json is Map && json.isNotEmpty) {
json = json.cast<String, dynamic>(); // ignore: parameter_assignments
for (final entry in json.entries) {
final value = CreateMatchRequestBody.listFromJson(entry.value, growable: growable,);
if (value != null) {
map[entry.key] = value;
}
}
}
return map;
}