AmountWithBreakdown constructor

AmountWithBreakdown({
  1. required Money grossAmount,
  2. Money? totalItemAmount,
  3. Money? feeAmount,
  4. Money? shippingAmount,
  5. Money? taxAmount,
  6. Money? netAmount,
})

Implementation

AmountWithBreakdown(
    {required this.grossAmount,
    this.totalItemAmount,
    this.feeAmount,
    this.shippingAmount,
    this.taxAmount,
    this.netAmount});