copyWith method
Implementation
DeductionsTotal copyWith(
{double? currentAmount,
String? isoCurrencyCode,
String? unofficialCurrencyCode,
double? ytdAmount}) {
return DeductionsTotal(
currentAmount: currentAmount ?? this.currentAmount,
isoCurrencyCode: isoCurrencyCode ?? this.isoCurrencyCode,
unofficialCurrencyCode:
unofficialCurrencyCode ?? this.unofficialCurrencyCode,
ytdAmount: ytdAmount ?? this.ytdAmount);
}