Pricing constructor

Pricing({
  1. dynamic currentPrice,
  2. dynamic salesPrice,
  3. bool? onSales,
  4. dynamic supplierPrice,
  5. dynamic markup,
})

Implementation

Pricing({
  this.currentPrice,
  this.salesPrice,
  this.onSales,
  this.supplierPrice,
  this.markup,
});