MappingBundle.fromJson constructor

MappingBundle.fromJson(
  1. List json, {
  2. Object? mapUrl,
})

Implementation

MappingBundle.fromJson(List json, {/*String|Uri*/ Object? mapUrl}) {
  for (var map in json) {
    addMapping(parseJson(map as Map, mapUrl: mapUrl) as SingleMapping);
  }
}