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