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