SumupProduct constructor

SumupProduct({
  1. String? name,
  2. double? price,
  3. int? quantity,
})

Implementation

SumupProduct({
  this.name,
  this.price,
  this.quantity,
});