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