copyWithWrapped method

WebApiModulesAgentPurchaseOrderConfirmDropShipRequest copyWithWrapped({
  1. Wrapped<String?>? purchaseOrderId,
  2. Wrapped<String?>? deliveryId,
})

Implementation

WebApiModulesAgentPurchaseOrderConfirmDropShipRequest copyWithWrapped(
    {Wrapped<String?>? purchaseOrderId, Wrapped<String?>? deliveryId}) {
  return WebApiModulesAgentPurchaseOrderConfirmDropShipRequest(
      purchaseOrderId: (purchaseOrderId != null
          ? purchaseOrderId.value
          : this.purchaseOrderId),
      deliveryId: (deliveryId != null ? deliveryId.value : this.deliveryId));
}