Item constructor

Item({
  1. String? image,
  2. String? name,
  3. int? price,
  4. int? quantity,
  5. String? reference,
  6. String? sku,
  7. String? url,
})

Implementation

Item({
  this.image,
  this.name,
  this.price,
  this.quantity,
  this.reference,
  this.sku,
  this.url,
});