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