OrderItem constructor

OrderItem({
  1. String? name,
  2. String? sku,
  3. int? units,
  4. String? sellingPrice,
  5. String? discount,
  6. String? tax,
  7. int? hsn,
})

Implementation

OrderItem({
  this.name,
  this.sku,
  this.units,
  this.sellingPrice,
  this.discount,
  this.tax,
  this.hsn,
});