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