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