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