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