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