OrderShipment constructor

OrderShipment({
  1. String? carrier,
  2. String? creationDate,
  3. String? deliveryDate,
  4. String? id,
  5. List<OrderShipmentLineItemShipment>? lineItems,
  6. OrderShipmentScheduledDeliveryDetails? scheduledDeliveryDetails,
  7. String? shipmentGroupId,
  8. String? status,
  9. String? trackingId,
})

Implementation

OrderShipment({
  this.carrier,
  this.creationDate,
  this.deliveryDate,
  this.id,
  this.lineItems,
  this.scheduledDeliveryDetails,
  this.shipmentGroupId,
  this.status,
  this.trackingId,
});