copyWith method
WebApiModulesAccountServicesAccountAccountControllerGetOfficeLocationResponse
copyWith({
- WebApiLogicAppFuncSessionLocation? location,
- WebApiLogicAppFuncSessionWarehouse? warehouse,
- WebApiLogicAppFuncSessionDepartment? department,
Implementation
WebApiModulesAccountServicesAccountAccountControllerGetOfficeLocationResponse
copyWith(
{WebApiLogicAppFuncSessionLocation? location,
WebApiLogicAppFuncSessionWarehouse? warehouse,
WebApiLogicAppFuncSessionDepartment? department}) {
return WebApiModulesAccountServicesAccountAccountControllerGetOfficeLocationResponse(
location: location ?? this.location,
warehouse: warehouse ?? this.warehouse,
department: department ?? this.department);
}