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