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