Item constructor

Item({
  1. String? sku,
  2. String? name,
  3. int? unitPrice,
  4. int? quantity,
  5. String? unitOfMeasure,
})

Implementation

Item({
  this.sku,
  this.name,
  this.unitPrice,
  this.quantity,
  this.unitOfMeasure,
});