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