EmojiPickerWidget constructor

const EmojiPickerWidget({
  1. Key? key,
  2. required KeyboardConfig keyboardConfig,
  3. dynamic onEmojiSelected(
    1. Category,
    2. Emoji
    )?,
  4. dynamic onBackspacePressed()?,
})

Implementation

const EmojiPickerWidget({
  Key? key,
  required this.keyboardConfig,
  this.onEmojiSelected,
  this.onBackspacePressed,
}) : super(key: key);