copyWith method

Implementation

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