Item constructor

Item(
  1. String name,
  2. int quantity,
  3. double price
)

Implementation

Item(this.name, this.quantity, this.price);