instance property

The default instance of SimpleBiometricPlatform to use.

Defaults to MethodChannelSimpleBiometric.

Implementation

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

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

Implementation

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