Deductions constructor

Deductions({
  1. List<Total>? subtotals,
  2. required List<DeductionsBreakdown> breakdown,
  3. List<Total>? totals,
  4. required DeductionsTotal total,
})

Implementation

Deductions({
  this.subtotals,
  required this.breakdown,
  this.totals,
  required this.total,
});