Item constructor

Item({
  1. String? id,
  2. String? description,
  3. int? priceCents,
  4. int? quantity,
  5. String? createdAt,
  6. String? updatedAt,
  7. String? price,
  8. bool? destroy,
})

Implementation

Item({
  this.id,
  this.description,
  this.priceCents,
  this.quantity,
  this.createdAt,
  this.updatedAt,
  this.price,
  this.destroy,
});