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