instance property

The default instance of FlutterBiometricCryptoPlatform to use.

Implementation

static FlutterBiometricCryptoPlatform get instance => _instance;
set instance (FlutterBiometricCryptoPlatform instance)

Platform-specific implementations should set this with their own platform-specific class that extends FlutterBiometricCryptoPlatform when they register themselves.

Implementation

static set instance(FlutterBiometricCryptoPlatform instance) {
  PlatformInterface.verifyToken(instance, _token);
  _instance = instance;
}