EmojiKeyboard constructor

EmojiKeyboard({
  1. Key? key,
  2. required TextEditingController emotionController,
  3. double emojiKeyboardHeight = 350,
  4. bool showEmojiKeyboard = true,
  5. bool darkMode = false,
})

Implementation

EmojiKeyboard(
    {Key? key,
    required this.emotionController,
    this.emojiKeyboardHeight = 350,
    this.showEmojiKeyboard = true,
    this.darkMode = false})
    : super(key: key);