Product constructor

Product({
  1. String? id,
  2. String? name,
  3. String? currency,
  4. num? price,
  5. num? quantity,
  6. num? position,
})

Implementation

Product({
  this.id,
  this.name,
  this.currency,
  this.price,
  this.quantity,
  this.position,
});