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