Discounts constructor

Discounts({
  1. String? id,
  2. String? name,
  3. String? price,
  4. String? totalPrice,
  5. int? quantity,
  6. String? glCode,
  7. String? currency,
  8. int? percentage,
  9. String? type,
  10. bool? cartLevelDiscount,
})

Implementation

Discounts(
    {this.id,
      this.name,
      this.price,
      this.totalPrice,
      this.quantity,
      this.glCode,
      this.currency,
      this.percentage,
      this.type,
      this.cartLevelDiscount});