FlatRate constructor

FlatRate({
  1. int? id,
  2. String? title,
  3. String? methodId,
  4. String? cost,
  5. String? classCost,
  6. String? calculationType,
  7. bool? taxable,
  8. List<ShippingClasses>? shippingClasses,
})

Implementation

FlatRate(
    {this.id,
    this.title,
    this.methodId,
    this.cost,
    this.classCost,
    this.calculationType,
    this.taxable,
    this.shippingClasses});