Price constructor

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

Implementation

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