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