copyWith method

StarTransactionTypeChannelPaidReactionSend copyWith({
  1. int? chatId,
  2. int? messageId,
})

Implementation

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