copyWith method
Implementation
CreditBankIncomeGetResponse copyWith(
{List<CreditBankIncome>? bankIncome, String? requestId}) {
return CreditBankIncomeGetResponse(
bankIncome: bankIncome ?? this.bankIncome,
requestId: requestId ?? this.requestId);
}