OSMFlutter constructor

const OSMFlutter({
  1. Key? key,
  2. required BaseMapController controller,
  3. required OSMOption osmOption,
  4. Widget? mapIsLoading,
  5. OnGeoPointClicked? onGeoPointClicked,
  6. OnLocationChanged? onLocationChanged,
  7. OnMapMoved? onMapMoved,
  8. dynamic onMapIsReady(
    1. bool
    )?,
})

Implementation

const OSMFlutter({
  super.key,
  required this.controller,
  required this.osmOption,
  this.mapIsLoading,
  this.onGeoPointClicked,
  this.onLocationChanged,
  this.onMapMoved,
  this.onMapIsReady,
});