copyWith method

StarTransactionTypePaidMessageSend copyWith({
  1. int? chatId,
  2. int? messageCount,
})

Implementation

StarTransactionTypePaidMessageSend copyWith({
  int? chatId,
  int? messageCount,
}) => StarTransactionTypePaidMessageSend(
  chatId: chatId ?? this.chatId,
  messageCount: messageCount ?? this.messageCount,
);