copyWith method
Implementation
RemoveMessageReaction copyWith({
int? chatId,
int? messageId,
ReactionType? reactionType,
}) =>
RemoveMessageReaction(
chatId: chatId ?? this.chatId,
messageId: messageId ?? this.messageId,
reactionType: reactionType ?? this.reactionType,
);