copyWith method
Implementation
PayStubDistributionBreakdown copyWith(
{String? accountName,
String? bankName,
double? currentAmount,
String? isoCurrencyCode,
String? mask,
String? type,
String? unofficialCurrencyCode}) {
return PayStubDistributionBreakdown(
accountName: accountName ?? this.accountName,
bankName: bankName ?? this.bankName,
currentAmount: currentAmount ?? this.currentAmount,
isoCurrencyCode: isoCurrencyCode ?? this.isoCurrencyCode,
mask: mask ?? this.mask,
type: type ?? this.type,
unofficialCurrencyCode:
unofficialCurrencyCode ?? this.unofficialCurrencyCode);
}