EmojiPickerWidget constructor

const EmojiPickerWidget({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. Future callbackAction(
    1. String? emoji
    )?,
})

Implementation

const EmojiPickerWidget({
  super.key,
  this.width,
  this.height,
  this.callbackAction,
});