MapData constructor

MapData({
  1. required int id,
  2. required String style,
  3. required int minZoom,
  4. required int maxZoom,
  5. required BBox bounds,
  6. BBox? maxBounds,
  7. UseTags? useTags,
  8. bool? tagsOverlap,
})

Implementation

MapData({
  required this.id,
  required this.style,
  required this.minZoom,
  required this.maxZoom,
  required this.bounds,
  this.maxBounds,
  this.useTags,
  this.tagsOverlap,
  });