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