EmojiPicker constructor

const EmojiPicker({
  1. Key? key,
  2. TextEditingController? textEditingController,
  3. OnEmojiSelected? onEmojiSelected,
  4. OnBackspacePressed? onBackspacePressed,
  5. Config config = const Config(),
  6. EmojiViewBuilder? customWidget,
})

EmojiPicker for flutter

Implementation

const EmojiPicker({
  Key? key,
  this.textEditingController,
  this.onEmojiSelected,
  this.onBackspacePressed,
  this.config = const Config(),
  this.customWidget,
}) : super(key: key);