mapListFromJson static method
Implementation
static Map<String, List<Authorizations?>?> mapListFromJson(
Map<String, dynamic> json, {
bool? emptyIsNull,
bool? growable,
}) {
final Map<String, List<Authorizations?>?> map =
<String, List<Authorizations>?>{};
if (json.isNotEmpty == true) {
json.forEach((key, value) {
map[key] = Authorizations.listFromJson(
value,
emptyIsNull: emptyIsNull,
growable: growable,
);
});
}
return map;
}