copyWith method

SetPaidMessageReactionType copyWith({
  1. int? chatId,
  2. int? messageId,
  3. PaidReactionType? type,
})

Implementation

SetPaidMessageReactionType copyWith({
  int? chatId,
  int? messageId,
  PaidReactionType? type,
}) => SetPaidMessageReactionType(
  chatId: chatId ?? this.chatId,
  messageId: messageId ?? this.messageId,
  type: type ?? this.type,
);