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