LocalArea constructor

LocalArea({
  1. int? id,
  2. String? name,
  3. String? code,
  4. bool? active,
  5. bool? freeShipping,
  6. bool? allowsPod,
  7. dynamic baseCost,
  8. dynamic handlingCost,
  9. dynamic costPerMetric,
  10. String? costMetric,
  11. dynamic durationMin,
  12. dynamic durationMax,
  13. String? durationMetric,
})

Implementation

LocalArea({
  this.id,
  this.name,
  this.code,
  this.active,
  this.freeShipping,
  this.allowsPod,
  this.baseCost,
  this.handlingCost,
  this.costPerMetric,
  this.costMetric,
  this.durationMin,
  this.durationMax,
  this.durationMetric,
});