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