Item constructor

Item({
  1. String? name,
  2. num? pricePerUnit,
  3. num? quantity,
  4. num? weight,
  5. num? height,
  6. num? width,
  7. num? length,
})

Implementation

Item({
  this.name,
  this.pricePerUnit,
  this.quantity,
  this.weight,
  this.height,
  this.width,
  this.length,
});