Details constructor

const Details({
  1. String subtotal = "20",
  2. String shipping = "0",
  3. num shippingDiscount = 0,
})

Implementation

const Details({
  this.subtotal = "20",
  this.shipping = "0",
  this.shippingDiscount = 0,
});