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