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