PriceList constructor

PriceList({
  1. String? name,
  2. String? id,
  3. Price? price,
})

Implementation

PriceList({
  this.name,
  this.id,
  this.price,
});