MapWidget constructor

const MapWidget({
  1. Key? key,
  2. required MapController? mapController,
  3. MapType mapType = MapType.google,
  4. double? width,
  5. double? height,
  6. dynamic onMapCreated()?,
  7. bool editable = true,
})

Implementation

const MapWidget(
    {Key? key,
      required this.mapController,
      this.mapType = MapType.google,
      this.width,
      this.height,
      this.onMapCreated,
      this.editable = true})
    : super(key: key);