copyWithWrapped method
CreditPayStubDeductions
copyWithWrapped({
- Wrapped<
List< ? breakdown,PayStubDeductionsBreakdown> > - Wrapped<
PayStubDeductionsTotal> ? total,
Implementation
CreditPayStubDeductions copyWithWrapped(
{Wrapped<List<PayStubDeductionsBreakdown>>? breakdown,
Wrapped<PayStubDeductionsTotal>? total}) {
return CreditPayStubDeductions(
breakdown: (breakdown != null ? breakdown.value : this.breakdown),
total: (total != null ? total.value : this.total));
}