copyWithWrapped method
BudgetSettings
copyWithWrapped({
- Wrapped<
DateFormat> ? dateFormat, - Wrapped<
CurrencyFormat> ? currencyFormat,
Implementation
BudgetSettings copyWithWrapped(
{Wrapped<DateFormat>? dateFormat,
Wrapped<CurrencyFormat>? currencyFormat}) {
return BudgetSettings(
dateFormat: (dateFormat != null ? dateFormat.value : this.dateFormat),
currencyFormat: (currencyFormat != null
? currencyFormat.value
: this.currencyFormat));
}