copyWith method
Implementation
@override
UpdateAnimatedEmojiMessageClicked copyWith({
int? chatId,
int? messageId,
Sticker? sticker,
dynamic extra,
int? clientId,
}) =>
UpdateAnimatedEmojiMessageClicked(
chatId: chatId ?? this.chatId,
messageId: messageId ?? this.messageId,
sticker: sticker ?? this.sticker,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);