copyWith method
CreditPayStubDeductions
copyWith({
- List<
PayStubDeductionsBreakdown> ? breakdown, - PayStubDeductionsTotal? total,
Implementation
CreditPayStubDeductions copyWith(
{List<PayStubDeductionsBreakdown>? breakdown,
PayStubDeductionsTotal? total}) {
return CreditPayStubDeductions(
breakdown: breakdown ?? this.breakdown, total: total ?? this.total);
}