copyWith method

StarTransactionTypeAffiliateProgramCommission copyWith({
  1. int? chatId,
  2. int? commissionPerMille,
})

Implementation

StarTransactionTypeAffiliateProgramCommission copyWith({
  int? chatId,
  int? commissionPerMille,
}) => StarTransactionTypeAffiliateProgramCommission(
  chatId: chatId ?? this.chatId,
  commissionPerMille: commissionPerMille ?? this.commissionPerMille,
);