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