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