instance property

IndicaKeyboardPlatform get instance

The default instance of IndicaKeyboardPlatform to use.

Defaults to MethodChannelIndicaKeyboard.

Implementation

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

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

Implementation

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