EmojiPicker constructor

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

EmojiPicker for flutter

Implementation

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