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