EmojiReaction constructor

EmojiReaction({
  1. String? extra,
  2. int? client_id,
  3. string? emoji,
  4. string? title,
  5. Bool? is_active,
  6. Sticker? static_icon,
  7. Sticker? appear_animation,
  8. Sticker? select_animation,
  9. Sticker? activate_animation,
  10. Sticker? effect_animation,
  11. Sticker? around_animation,
  12. Sticker? center_animation,
})

Implementation

EmojiReaction({
  super.extra,
  super.client_id,
  this.emoji,
  this.title,
  this.is_active,
  this.static_icon,
  this.appear_animation,
  this.select_animation,
  this.activate_animation,
  this.effect_animation,
  this.around_animation,
  this.center_animation,
});