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