EmojiSelector constructor

const EmojiSelector({
  1. Key? key,
  2. void onEmojiSelected(
    1. Emoji
    )?,
  3. bool showEmojiGroupName = false,
  4. bool showSearchField = true,
  5. bool autofocusSearchField = false,
  6. Duration searchDelay = const Duration(milliseconds: 200),
  7. InputDecoration? searchFieldDecoration,
})

Implementation

const EmojiSelector({
  super.key,
  this.onEmojiSelected,
  this.showEmojiGroupName = false,
  this.showSearchField = true,
  this.autofocusSearchField = false,
  this.searchDelay = const Duration(milliseconds: 200),
  this.searchFieldDecoration,
});