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