copyWith method

StarTransactionTypeGiveawayDeposit copyWith({
  1. int? chatId,
  2. int? giveawayMessageId,
})

Implementation

StarTransactionTypeGiveawayDeposit copyWith({
  int? chatId,
  int? giveawayMessageId,
}) => StarTransactionTypeGiveawayDeposit(
  chatId: chatId ?? this.chatId,
  giveawayMessageId: giveawayMessageId ?? this.giveawayMessageId,
);