InventoryInterface constructor

InventoryInterface({
  1. String itemDescription = '',
  2. double price = 0.0,
  3. int quantity = 0,
})

Implementation

InventoryInterface({
  this.itemDescription = '',
  this.price = 0.0,
  this.quantity = 0,
});