OlaMap constructor

const OlaMap({
  1. Key? key,
  2. required String apiKey,
  3. required void onPlatformViewCreated(
    1. OlaMapController
    ),
  4. bool? showCurrentLocation,
  5. bool? showZoomControls,
  6. bool? showMyLocationButton,
})

Implementation

const OlaMap({
  Key? key,
  required this.apiKey,
  required this.onPlatformViewCreated,
  this.showCurrentLocation,
  this.showZoomControls,
  this.showMyLocationButton,
}) : super(key: key);