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