Price constructor

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

Implementation

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