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