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