Inventory constructor

Inventory({
  1. String? itemDescription,
  2. double? price,
  3. int? quantity,
})

Implementation

Inventory({
  this.itemDescription,
  this.price,
  this.quantity,
});