EmojiReaction constructor

EmojiReaction({
  1. required String emoji,
  2. required String title,
  3. required bool isActive,
  4. Sticker? staticIcon,
  5. Sticker? appearAnimation,
  6. Sticker? selectAnimation,
  7. Sticker? activateAnimation,
  8. Sticker? effectAnimation,
  9. Sticker? aroundAnimation,
  10. Sticker? centerAnimation,
})

Implementation

EmojiReaction({
  required this.emoji,
  required this.title,
  required this.isActive,
  this.staticIcon,
  this.appearAnimation,
  this.selectAnimation,
  this.activateAnimation,
  this.effectAnimation,
  this.aroundAnimation,
  this.centerAnimation,
});