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