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