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