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