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