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