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