Item constructor

Item(
  1. String id,
  2. int price,
  3. int qty,
  4. String? productName,
)

Implementation

Item(this.id, this.price, this.qty, this.productName);