EmojiPickerContent constructor

EmojiPickerContent({
  1. Key? key,
  2. required int activeTabIndex,
  3. dynamic onEmojiClick(
    1. Map<String, dynamic> data
    )?,
  4. VoidCallback? onSendClick,
  5. VoidCallback? onDeleteClick,
})

Implementation

EmojiPickerContent({
  super.key,
  required this.activeTabIndex,
  this.onEmojiClick,
  this.onSendClick,
  this.onDeleteClick,
});