copyWith method

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

Implementation

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