MapCenterButton constructor

const MapCenterButton({
  1. Key? key,
  2. required MapController map,
  3. required TickerProvider vsync,
  4. required LatLng center,
  5. required double zoom,
  6. required String tooltip,
})

Implementation

const MapCenterButton({
  super.key,
  required this.map,
  required this.vsync,
  required this.center,
  required this.zoom,
  required this.tooltip,
});