Discount constructor

Discount({
  1. String? object,
  2. Coupon? coupon,
  3. dynamic customer,
  4. int? end,
  5. int? start,
  6. String? subscription,
})

Implementation

Discount({
  this.object,
  this.coupon,
  this.customer,
  this.end,
  this.start,
  this.subscription,
});