EmojiPicker constructor

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

EmojiPicker for flutter

Implementation

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