copyWithWrapped method
Implementation
WebApiModulesAgentPurchaseOrderCopyPurchaseOrderRequest copyWithWrapped({
Wrapped<String?>? purchaseOrderId,
Wrapped<String?>? locationId,
Wrapped<String?>? warehouseId,
Wrapped<String?>? description,
}) {
return WebApiModulesAgentPurchaseOrderCopyPurchaseOrderRequest(
purchaseOrderId: (purchaseOrderId != null
? purchaseOrderId.value
: this.purchaseOrderId),
locationId: (locationId != null ? locationId.value : this.locationId),
warehouseId: (warehouseId != null ? warehouseId.value : this.warehouseId),
description: (description != null ? description.value : this.description),
);
}