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