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