copyWith method

WebApiModulesAgentPurchaseOrderConfirmDropShipRequest copyWith({
  1. String? purchaseOrderId,
  2. String? deliveryId,
})

Implementation

WebApiModulesAgentPurchaseOrderConfirmDropShipRequest copyWith(
    {String? purchaseOrderId, String? deliveryId}) {
  return WebApiModulesAgentPurchaseOrderConfirmDropShipRequest(
      purchaseOrderId: purchaseOrderId ?? this.purchaseOrderId,
      deliveryId: deliveryId ?? this.deliveryId);
}