copyWith method
Implementation
CreditBankIncomeHistoricalSummary copyWith(
{double? totalAmount,
String? isoCurrencyCode,
String? unofficialCurrencyCode,
DateTime? startDate,
DateTime? endDate,
List<CreditBankIncomeTransaction>? transactions}) {
return CreditBankIncomeHistoricalSummary(
totalAmount: totalAmount ?? this.totalAmount,
isoCurrencyCode: isoCurrencyCode ?? this.isoCurrencyCode,
unofficialCurrencyCode:
unofficialCurrencyCode ?? this.unofficialCurrencyCode,
startDate: startDate ?? this.startDate,
endDate: endDate ?? this.endDate,
transactions: transactions ?? this.transactions);
}