updateAnimatedEmojiMessageClicked property

UpdateAnimatedEmojiMessageClicked? updateAnimatedEmojiMessageClicked

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

UpdateAnimatedEmojiMessageClicked? get updateAnimatedEmojiMessageClicked {
  if (this is UpdateAnimatedEmojiMessageClicked) {
    return this as UpdateAnimatedEmojiMessageClicked;
  }
  return null;
}