ShipmentMethods constructor

ShipmentMethods({
  1. String? id,
  2. String? createdAt,
  3. String? name,
  4. String? logoURL,
  5. String? type,
  6. String? calculationType,
  7. int? shipmentEstimatedDay,
  8. bool? showShipmentEstimatedDay,
  9. int? freeShipmentCargoLimit,
  10. bool? cashOnDelivery,
  11. List<ProductPriceDTO>? prices,
})

Implementation

ShipmentMethods(
    {this.id,
    this.createdAt,
    this.name,
    this.logoURL,
    this.type,
    this.calculationType,
    this.shipmentEstimatedDay,
    this.showShipmentEstimatedDay,
    this.freeShipmentCargoLimit,
    this.cashOnDelivery,
    this.prices});