AppMapView constructor

const AppMapView({
  1. Key? key,
  2. double? latitude,
  3. double? longitude,
  4. double? zoom,
  5. dynamic onMapViewCreated(
    1. AppMapController appMapController
    )?,
  6. dynamic onMarkerClick(
    1. int index
    )?,
  7. dynamic onMapRegionChanged(
    1. double latitude,
    2. double longitude,
    3. double zoom
    )?,
})

Implementation

const AppMapView({
  super.key,
  this.latitude,
  this.longitude,
  this.zoom,
  this.onMapViewCreated,
  this.onMarkerClick,
  this.onMapRegionChanged,
});