copyWith method

RemoveMessageReaction copyWith({
  1. int? chatId,
  2. int? messageId,
  3. ReactionType? reactionType,
})

Implementation

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