copyWithWrapped method
Implementation
CreditBankIncomeHistoricalSummary copyWithWrapped(
{Wrapped<double?>? totalAmount,
Wrapped<String?>? isoCurrencyCode,
Wrapped<String?>? unofficialCurrencyCode,
Wrapped<DateTime?>? startDate,
Wrapped<DateTime?>? endDate,
Wrapped<List<CreditBankIncomeTransaction>?>? transactions}) {
return CreditBankIncomeHistoricalSummary(
totalAmount:
(totalAmount != null ? totalAmount.value : this.totalAmount),
isoCurrencyCode: (isoCurrencyCode != null
? isoCurrencyCode.value
: this.isoCurrencyCode),
unofficialCurrencyCode: (unofficialCurrencyCode != null
? unofficialCurrencyCode.value
: this.unofficialCurrencyCode),
startDate: (startDate != null ? startDate.value : this.startDate),
endDate: (endDate != null ? endDate.value : this.endDate),
transactions:
(transactions != null ? transactions.value : this.transactions));
}