Price constructor

Price({
  1. dynamic percentage,
  2. dynamic taxRate,
  3. String? dutyFreeAmount,
  4. String? taxIncludedAmount,
})

Implementation

Price({
  this.percentage,
  this.taxRate,
  this.dutyFreeAmount,
  this.taxIncludedAmount,
});