Item constructor

Item({
  1. String? name,
  2. String? amountCents,
  3. String? description,
  4. String? quantity,
})

Implementation

Item({
  this.name,
  this.amountCents,
  this.description,
  this.quantity,
});