FluffyRegion constructor

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

Implementation

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