copyWith method

CreditBankIncomeGetRequestOptions copyWith({
  1. int? count,
})

Implementation

CreditBankIncomeGetRequestOptions copyWith({int? count}) {
  return CreditBankIncomeGetRequestOptions(count: count ?? this.count);
}