Inventory constructor

Inventory({
  1. int? quantity,
  2. String? type,
  3. String? value,
})

Implementation

Inventory({this.quantity, this.type, this.value});