UpdateAnimatedEmojiMessageClicked constructor

const UpdateAnimatedEmojiMessageClicked({
  1. required int chatId,
  2. required int messageId,
  3. required Sticker sticker,
  4. dynamic extra,
  5. int? clientId,
})

Some animated emoji message was clicked and a big animated sticker must be played if the message is visible on the screen. chatActionWatchingAnimations with the text of the message needs to be sent if the sticker is played

Implementation

const UpdateAnimatedEmojiMessageClicked({
  required this.chatId,
  required this.messageId,
  required this.sticker,
  this.extra,
  this.clientId,
});