OSMFlutter constructor

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

Implementation

OSMFlutter({
  Key? key,
  required this.controller,
  required this.osmOption,
  this.mapIsLoading,
  this.onGeoPointClicked,
  this.onLocationChanged,
  this.onMapIsReady,
}) : super(key: key);