EmojiReaction constructor

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

Contains information about a emoji reaction

Implementation

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