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