Amounts constructor

Amounts({
  1. UnitPrice? handlingFee,
  2. UnitPrice? insurance,
  3. UnitPrice? shippingAndHandling,
  4. UnitPrice? shippingDiscount,
  5. UnitPrice? subtotal,
  6. UnitPrice? tax,
  7. UnitPrice? total,
})

Implementation

Amounts(
    {this.handlingFee,
    this.insurance,
    this.shippingAndHandling,
    this.shippingDiscount,
    this.subtotal,
    this.tax,
    this.total});