Inventory constructor

Inventory({
  1. String? sku,
  2. String? barcode,
  3. dynamic quantity,
  4. dynamic trackQuantity,
  5. dynamic reorderPoint,
})

Implementation

Inventory({
  this.sku,
  this.barcode,
  this.quantity,
  this.trackQuantity,
  this.reorderPoint,
});