ShipmentMethodDTO constructor

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

Implementation

ShipmentMethodDTO(
    {super.id,
    super.createdAt,
    super.updatedAt,
    super.isActive,
    super.isDeleted,
    this.name,
    this.logoURL,
    this.type,
    this.calculationType,
    this.shipmentEstimatedDay,
    this.showShipmentEstimatedDay,
    this.freeShipmentCargoLimit,
    this.cashOnDelivery,
    this.prices});