instance property
GoogleMapsFlutterPlatform
get
instance
The default instance of GoogleMapsFlutterPlatform to use.
Defaults to MethodChannelGoogleMapsFlutter.
Implementation
static GoogleMapsFlutterPlatform get instance => _instance;
set
instance
(GoogleMapsFlutterPlatform instance)
Platform-specific plugins should set this with their own platform-specific class that extends GoogleMapsFlutterPlatform when they register themselves.
Implementation
static set instance(GoogleMapsFlutterPlatform instance) {
PlatformInterface.verify(instance, _token);
_instance = instance;
}