copyWith method

StarTransactionTypeChannelSubscriptionPurchase copyWith({
  1. int? chatId,
  2. int? subscriptionPeriod,
})

Implementation

StarTransactionTypeChannelSubscriptionPurchase copyWith({
  int? chatId,
  int? subscriptionPeriod,
}) => StarTransactionTypeChannelSubscriptionPurchase(
  chatId: chatId ?? this.chatId,
  subscriptionPeriod: subscriptionPeriod ?? this.subscriptionPeriod,
);