instance property

The default instance of SecureNumericKeyboardPlatform to use.

Defaults to MethodChannelSecureNumericKeyboard.

Implementation

static SecureNumericKeyboardPlatform get instance => _instance;
void instance=(SecureNumericKeyboardPlatform instance)

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

Implementation

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