MapWidget constructor

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

Implementation

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