Inventory constructor

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

Implementation

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