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