copyWithWrapped method
WebApiModulesAccountServicesAccountAccountControllerGetOfficeLocationResponse
copyWithWrapped({
- Wrapped<
WebApiLogicAppFuncSessionLocation?> ? location, - Wrapped<
WebApiLogicAppFuncSessionWarehouse?> ? warehouse, - Wrapped<
WebApiLogicAppFuncSessionDepartment?> ? department,
Implementation
WebApiModulesAccountServicesAccountAccountControllerGetOfficeLocationResponse
copyWithWrapped(
{Wrapped<WebApiLogicAppFuncSessionLocation?>? location,
Wrapped<WebApiLogicAppFuncSessionWarehouse?>? warehouse,
Wrapped<WebApiLogicAppFuncSessionDepartment?>? department}) {
return WebApiModulesAccountServicesAccountAccountControllerGetOfficeLocationResponse(
location: (location != null ? location.value : this.location),
warehouse: (warehouse != null ? warehouse.value : this.warehouse),
department: (department != null ? department.value : this.department));
}