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