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