WindowsMap constructor

WindowsMap({
  1. Key? key,
  2. required WindowsMapController controller,
  3. int zoom = 8,
  4. required LatLng center,
  5. bool doubleClickZoom = true,
  6. int maxZoom = 30,
  7. int minZoom = 4,
})

Implementation

WindowsMap(
    {Key? key,
    required WindowsMapController controller,
    this.zoom = 8,
    required this.center,
    this.doubleClickZoom = true,
    this.maxZoom = 30,
    this.minZoom = 4})
    : _mapController = controller,
      assert(minZoom < maxZoom, "minZoom gte maxZoom"),
      super(key: key);