Inventory constructor

Inventory({
  1. int? inventoryId,
  2. Item? item,
  3. ICProject? icProject,
  4. double? qtyOnHand,
})

Implementation

Inventory(
{
 this.inventoryId,
  this.item,
  this.icProject,
  this.qtyOnHand,
}
    );