mapController property
GoogleMapController?
get
mapController
Controller for the underlying GoogleMap widget.
Implementation
GoogleMapController? get mapController => _mapController;
set
mapController
(GoogleMapController? controller)
Updates mapController and notifies listeners.
Implementation
set mapController(GoogleMapController? controller) {
_mapController = controller;
notifyListeners();
}