From e1a35cc378abcffe8e2bb5f010489624b06f9c8d Mon Sep 17 00:00:00 2001 From: Eric Windmill Date: Wed, 25 Sep 2024 09:28:57 -0400 Subject: [PATCH] add license header to files under /app --- compass_app/app/lib/config/assets.dart | 4 ++++ compass_app/app/lib/config/dependencies.dart | 4 ++++ .../lib/data/repositories/activity/activity_repository.dart | 4 ++++ .../data/repositories/activity/activity_repository_local.dart | 4 ++++ .../repositories/activity/activity_repository_remote.dart | 4 ++++ .../app/lib/data/repositories/auth/auth_repository.dart | 4 ++++ .../app/lib/data/repositories/auth/auth_repository_dev.dart | 4 ++++ .../lib/data/repositories/auth/auth_repository_remote.dart | 4 ++++ .../app/lib/data/repositories/booking/booking_repository.dart | 4 ++++ .../data/repositories/booking/booking_repository_local.dart | 4 ++++ .../data/repositories/booking/booking_repository_remote.dart | 4 ++++ .../lib/data/repositories/continent/continent_repository.dart | 4 ++++ .../repositories/continent/continent_repository_local.dart | 4 ++++ .../repositories/continent/continent_repository_remote.dart | 4 ++++ .../data/repositories/destination/destination_repository.dart | 4 ++++ .../destination/destination_repository_local.dart | 4 ++++ .../destination/destination_repository_remote.dart | 4 ++++ .../itinerary_config/itinerary_config_repository.dart | 4 ++++ .../itinerary_config/itinerary_config_repository_memory.dart | 4 ++++ .../app/lib/data/repositories/user/user_repository.dart | 4 ++++ .../app/lib/data/repositories/user/user_repository_local.dart | 4 ++++ .../lib/data/repositories/user/user_repository_remote.dart | 4 ++++ compass_app/app/lib/data/services/api/api_client.dart | 4 ++++ compass_app/app/lib/data/services/api/auth_api_client.dart | 4 ++++ .../data/services/api/model/booking/booking_api_model.dart | 4 ++++ .../data/services/api/model/login_request/login_request.dart | 4 ++++ .../services/api/model/login_response/login_response.dart | 4 ++++ .../app/lib/data/services/api/model/user/user_api_model.dart | 4 ++++ .../app/lib/data/services/local/local_data_service.dart | 4 ++++ .../app/lib/data/services/shared_preferences_service.dart | 4 ++++ compass_app/app/lib/domain/models/activity/activity.dart | 4 ++++ compass_app/app/lib/domain/models/booking/booking.dart | 4 ++++ .../app/lib/domain/models/booking/booking_summary.dart | 4 ++++ compass_app/app/lib/domain/models/continent/continent.dart | 4 ++++ .../app/lib/domain/models/destination/destination.dart | 4 ++++ .../lib/domain/models/itinerary_config/itinerary_config.dart | 4 ++++ compass_app/app/lib/domain/models/user/user.dart | 4 ++++ .../lib/domain/use_cases/booking/booking_create_use_case.dart | 4 ++++ .../lib/domain/use_cases/booking/booking_share_use_case.dart | 4 ++++ compass_app/app/lib/main.dart | 4 ++++ compass_app/app/lib/main_development.dart | 4 ++++ compass_app/app/lib/main_staging.dart | 4 ++++ compass_app/app/lib/routing/router.dart | 4 ++++ compass_app/app/lib/routing/routes.dart | 4 ++++ compass_app/app/lib/utils/command.dart | 4 ++++ compass_app/app/lib/utils/image_error_listener.dart | 4 ++++ compass_app/app/lib/utils/result.dart | 4 ++++ 47 files changed, 188 insertions(+) diff --git a/compass_app/app/lib/config/assets.dart b/compass_app/app/lib/config/assets.dart index b5a71146c..b60059e0a 100644 --- a/compass_app/app/lib/config/assets.dart +++ b/compass_app/app/lib/config/assets.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + class Assets { static const activities = 'assets/activities.json'; static const destinations = 'assets/destinations.json'; diff --git a/compass_app/app/lib/config/dependencies.dart b/compass_app/app/lib/config/dependencies.dart index e9dcb0dce..42e283477 100644 --- a/compass_app/app/lib/config/dependencies.dart +++ b/compass_app/app/lib/config/dependencies.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'package:provider/single_child_widget.dart'; import 'package:provider/provider.dart'; diff --git a/compass_app/app/lib/data/repositories/activity/activity_repository.dart b/compass_app/app/lib/data/repositories/activity/activity_repository.dart index 79e57e97a..ab0c79296 100644 --- a/compass_app/app/lib/data/repositories/activity/activity_repository.dart +++ b/compass_app/app/lib/data/repositories/activity/activity_repository.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import '../../../domain/models/activity/activity.dart'; import '../../../utils/result.dart'; diff --git a/compass_app/app/lib/data/repositories/activity/activity_repository_local.dart b/compass_app/app/lib/data/repositories/activity/activity_repository_local.dart index c5e43164b..fb2bb23a3 100644 --- a/compass_app/app/lib/data/repositories/activity/activity_repository_local.dart +++ b/compass_app/app/lib/data/repositories/activity/activity_repository_local.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import '../../../domain/models/activity/activity.dart'; import '../../../utils/result.dart'; import '../../services/local/local_data_service.dart'; diff --git a/compass_app/app/lib/data/repositories/activity/activity_repository_remote.dart b/compass_app/app/lib/data/repositories/activity/activity_repository_remote.dart index 180642ee9..6d2d0bcc5 100644 --- a/compass_app/app/lib/data/repositories/activity/activity_repository_remote.dart +++ b/compass_app/app/lib/data/repositories/activity/activity_repository_remote.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import '../../../domain/models/activity/activity.dart'; import '../../../utils/result.dart'; import '../../services/api/api_client.dart'; diff --git a/compass_app/app/lib/data/repositories/auth/auth_repository.dart b/compass_app/app/lib/data/repositories/auth/auth_repository.dart index 24b3e5ac3..b2d1f98f0 100644 --- a/compass_app/app/lib/data/repositories/auth/auth_repository.dart +++ b/compass_app/app/lib/data/repositories/auth/auth_repository.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'package:flutter/foundation.dart'; import '../../../utils/result.dart'; diff --git a/compass_app/app/lib/data/repositories/auth/auth_repository_dev.dart b/compass_app/app/lib/data/repositories/auth/auth_repository_dev.dart index 3f7b20ecc..5c56b9621 100644 --- a/compass_app/app/lib/data/repositories/auth/auth_repository_dev.dart +++ b/compass_app/app/lib/data/repositories/auth/auth_repository_dev.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import '../../../utils/result.dart'; import 'auth_repository.dart'; diff --git a/compass_app/app/lib/data/repositories/auth/auth_repository_remote.dart b/compass_app/app/lib/data/repositories/auth/auth_repository_remote.dart index a1be9b92e..8d8687f68 100644 --- a/compass_app/app/lib/data/repositories/auth/auth_repository_remote.dart +++ b/compass_app/app/lib/data/repositories/auth/auth_repository_remote.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'package:logging/logging.dart'; import '../../../utils/result.dart'; diff --git a/compass_app/app/lib/data/repositories/booking/booking_repository.dart b/compass_app/app/lib/data/repositories/booking/booking_repository.dart index 44cbce037..aeda7c74b 100644 --- a/compass_app/app/lib/data/repositories/booking/booking_repository.dart +++ b/compass_app/app/lib/data/repositories/booking/booking_repository.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import '../../../domain/models/booking/booking.dart'; import '../../../domain/models/booking/booking_summary.dart'; import '../../../utils/result.dart'; diff --git a/compass_app/app/lib/data/repositories/booking/booking_repository_local.dart b/compass_app/app/lib/data/repositories/booking/booking_repository_local.dart index dbdba4aff..4a340d7c2 100644 --- a/compass_app/app/lib/data/repositories/booking/booking_repository_local.dart +++ b/compass_app/app/lib/data/repositories/booking/booking_repository_local.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'dart:async'; import 'package:collection/collection.dart'; diff --git a/compass_app/app/lib/data/repositories/booking/booking_repository_remote.dart b/compass_app/app/lib/data/repositories/booking/booking_repository_remote.dart index 16bcd221e..1ac1cd7cd 100644 --- a/compass_app/app/lib/data/repositories/booking/booking_repository_remote.dart +++ b/compass_app/app/lib/data/repositories/booking/booking_repository_remote.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import '../../../domain/models/activity/activity.dart'; import '../../../domain/models/booking/booking.dart'; import '../../../domain/models/booking/booking_summary.dart'; diff --git a/compass_app/app/lib/data/repositories/continent/continent_repository.dart b/compass_app/app/lib/data/repositories/continent/continent_repository.dart index 7f55bfe20..14690b6ec 100644 --- a/compass_app/app/lib/data/repositories/continent/continent_repository.dart +++ b/compass_app/app/lib/data/repositories/continent/continent_repository.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import '../../../domain/models/continent/continent.dart'; import '../../../utils/result.dart'; diff --git a/compass_app/app/lib/data/repositories/continent/continent_repository_local.dart b/compass_app/app/lib/data/repositories/continent/continent_repository_local.dart index a0eb4a996..8c64f05f7 100644 --- a/compass_app/app/lib/data/repositories/continent/continent_repository_local.dart +++ b/compass_app/app/lib/data/repositories/continent/continent_repository_local.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import '../../../domain/models/continent/continent.dart'; import '../../../utils/result.dart'; import '../../services/local/local_data_service.dart'; diff --git a/compass_app/app/lib/data/repositories/continent/continent_repository_remote.dart b/compass_app/app/lib/data/repositories/continent/continent_repository_remote.dart index 899300e27..58a6e439e 100644 --- a/compass_app/app/lib/data/repositories/continent/continent_repository_remote.dart +++ b/compass_app/app/lib/data/repositories/continent/continent_repository_remote.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import '../../../domain/models/continent/continent.dart'; import '../../../utils/result.dart'; import '../../services/api/api_client.dart'; diff --git a/compass_app/app/lib/data/repositories/destination/destination_repository.dart b/compass_app/app/lib/data/repositories/destination/destination_repository.dart index 3dc8f8eca..64af520ce 100644 --- a/compass_app/app/lib/data/repositories/destination/destination_repository.dart +++ b/compass_app/app/lib/data/repositories/destination/destination_repository.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import '../../../domain/models/destination/destination.dart'; import '../../../utils/result.dart'; diff --git a/compass_app/app/lib/data/repositories/destination/destination_repository_local.dart b/compass_app/app/lib/data/repositories/destination/destination_repository_local.dart index d385304b7..8604251b7 100644 --- a/compass_app/app/lib/data/repositories/destination/destination_repository_local.dart +++ b/compass_app/app/lib/data/repositories/destination/destination_repository_local.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import '../../../domain/models/destination/destination.dart'; import '../../../utils/result.dart'; import '../../services/local/local_data_service.dart'; diff --git a/compass_app/app/lib/data/repositories/destination/destination_repository_remote.dart b/compass_app/app/lib/data/repositories/destination/destination_repository_remote.dart index 3ba8dabd2..191b2a6ed 100644 --- a/compass_app/app/lib/data/repositories/destination/destination_repository_remote.dart +++ b/compass_app/app/lib/data/repositories/destination/destination_repository_remote.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import '../../../domain/models/destination/destination.dart'; import '../../../utils/result.dart'; import '../../services/api/api_client.dart'; diff --git a/compass_app/app/lib/data/repositories/itinerary_config/itinerary_config_repository.dart b/compass_app/app/lib/data/repositories/itinerary_config/itinerary_config_repository.dart index 466e20bc7..a48297620 100644 --- a/compass_app/app/lib/data/repositories/itinerary_config/itinerary_config_repository.dart +++ b/compass_app/app/lib/data/repositories/itinerary_config/itinerary_config_repository.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import '../../../domain/models/itinerary_config/itinerary_config.dart'; import '../../../utils/result.dart'; diff --git a/compass_app/app/lib/data/repositories/itinerary_config/itinerary_config_repository_memory.dart b/compass_app/app/lib/data/repositories/itinerary_config/itinerary_config_repository_memory.dart index a1972eac6..5bd9cc0d5 100644 --- a/compass_app/app/lib/data/repositories/itinerary_config/itinerary_config_repository_memory.dart +++ b/compass_app/app/lib/data/repositories/itinerary_config/itinerary_config_repository_memory.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'dart:async'; import '../../../domain/models/itinerary_config/itinerary_config.dart'; diff --git a/compass_app/app/lib/data/repositories/user/user_repository.dart b/compass_app/app/lib/data/repositories/user/user_repository.dart index f1e503bfd..142060c46 100644 --- a/compass_app/app/lib/data/repositories/user/user_repository.dart +++ b/compass_app/app/lib/data/repositories/user/user_repository.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import '../../../domain/models/user/user.dart'; import '../../../utils/result.dart'; diff --git a/compass_app/app/lib/data/repositories/user/user_repository_local.dart b/compass_app/app/lib/data/repositories/user/user_repository_local.dart index d43bece6d..09ad4300b 100644 --- a/compass_app/app/lib/data/repositories/user/user_repository_local.dart +++ b/compass_app/app/lib/data/repositories/user/user_repository_local.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import '../../../domain/models/user/user.dart'; import '../../../utils/result.dart'; import '../../services/local/local_data_service.dart'; diff --git a/compass_app/app/lib/data/repositories/user/user_repository_remote.dart b/compass_app/app/lib/data/repositories/user/user_repository_remote.dart index 2b2d4b0a5..35e47ff6d 100644 --- a/compass_app/app/lib/data/repositories/user/user_repository_remote.dart +++ b/compass_app/app/lib/data/repositories/user/user_repository_remote.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import '../../../domain/models/user/user.dart'; import '../../../utils/result.dart'; import '../../services/api/api_client.dart'; diff --git a/compass_app/app/lib/data/services/api/api_client.dart b/compass_app/app/lib/data/services/api/api_client.dart index 92acd3573..58f2d7a0a 100644 --- a/compass_app/app/lib/data/services/api/api_client.dart +++ b/compass_app/app/lib/data/services/api/api_client.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'dart:convert'; import 'dart:io'; diff --git a/compass_app/app/lib/data/services/api/auth_api_client.dart b/compass_app/app/lib/data/services/api/auth_api_client.dart index 8eaa2d892..7c2191b46 100644 --- a/compass_app/app/lib/data/services/api/auth_api_client.dart +++ b/compass_app/app/lib/data/services/api/auth_api_client.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'dart:convert'; import 'dart:io'; diff --git a/compass_app/app/lib/data/services/api/model/booking/booking_api_model.dart b/compass_app/app/lib/data/services/api/model/booking/booking_api_model.dart index 5a67b5dc5..bbd0ec35a 100644 --- a/compass_app/app/lib/data/services/api/model/booking/booking_api_model.dart +++ b/compass_app/app/lib/data/services/api/model/booking/booking_api_model.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'package:freezed_annotation/freezed_annotation.dart'; part 'booking_api_model.freezed.dart'; diff --git a/compass_app/app/lib/data/services/api/model/login_request/login_request.dart b/compass_app/app/lib/data/services/api/model/login_request/login_request.dart index b154a0c75..e30ec7cf6 100644 --- a/compass_app/app/lib/data/services/api/model/login_request/login_request.dart +++ b/compass_app/app/lib/data/services/api/model/login_request/login_request.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'package:freezed_annotation/freezed_annotation.dart'; part 'login_request.freezed.dart'; diff --git a/compass_app/app/lib/data/services/api/model/login_response/login_response.dart b/compass_app/app/lib/data/services/api/model/login_response/login_response.dart index d7388a894..bc17d6a9f 100644 --- a/compass_app/app/lib/data/services/api/model/login_response/login_response.dart +++ b/compass_app/app/lib/data/services/api/model/login_response/login_response.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'package:freezed_annotation/freezed_annotation.dart'; part 'login_response.freezed.dart'; diff --git a/compass_app/app/lib/data/services/api/model/user/user_api_model.dart b/compass_app/app/lib/data/services/api/model/user/user_api_model.dart index 9806fbb6a..09629cd07 100644 --- a/compass_app/app/lib/data/services/api/model/user/user_api_model.dart +++ b/compass_app/app/lib/data/services/api/model/user/user_api_model.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'package:freezed_annotation/freezed_annotation.dart'; part 'user_api_model.freezed.dart'; diff --git a/compass_app/app/lib/data/services/local/local_data_service.dart b/compass_app/app/lib/data/services/local/local_data_service.dart index d2b0c9565..c88828b2d 100644 --- a/compass_app/app/lib/data/services/local/local_data_service.dart +++ b/compass_app/app/lib/data/services/local/local_data_service.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'dart:convert'; import 'package:flutter/services.dart'; diff --git a/compass_app/app/lib/data/services/shared_preferences_service.dart b/compass_app/app/lib/data/services/shared_preferences_service.dart index e270f32d7..05a684601 100644 --- a/compass_app/app/lib/data/services/shared_preferences_service.dart +++ b/compass_app/app/lib/data/services/shared_preferences_service.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'package:logging/logging.dart'; import 'package:shared_preferences/shared_preferences.dart'; diff --git a/compass_app/app/lib/domain/models/activity/activity.dart b/compass_app/app/lib/domain/models/activity/activity.dart index f5d650564..eef66e8dc 100644 --- a/compass_app/app/lib/domain/models/activity/activity.dart +++ b/compass_app/app/lib/domain/models/activity/activity.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'package:freezed_annotation/freezed_annotation.dart'; part 'activity.freezed.dart'; diff --git a/compass_app/app/lib/domain/models/booking/booking.dart b/compass_app/app/lib/domain/models/booking/booking.dart index 22bb575b5..e94f51b3c 100644 --- a/compass_app/app/lib/domain/models/booking/booking.dart +++ b/compass_app/app/lib/domain/models/booking/booking.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'package:freezed_annotation/freezed_annotation.dart'; import '../activity/activity.dart'; diff --git a/compass_app/app/lib/domain/models/booking/booking_summary.dart b/compass_app/app/lib/domain/models/booking/booking_summary.dart index 439ecd3c3..4836e5ec5 100644 --- a/compass_app/app/lib/domain/models/booking/booking_summary.dart +++ b/compass_app/app/lib/domain/models/booking/booking_summary.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'package:freezed_annotation/freezed_annotation.dart'; part 'booking_summary.freezed.dart'; diff --git a/compass_app/app/lib/domain/models/continent/continent.dart b/compass_app/app/lib/domain/models/continent/continent.dart index a07a2d4d9..e0a309d59 100644 --- a/compass_app/app/lib/domain/models/continent/continent.dart +++ b/compass_app/app/lib/domain/models/continent/continent.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'package:freezed_annotation/freezed_annotation.dart'; part 'continent.freezed.dart'; diff --git a/compass_app/app/lib/domain/models/destination/destination.dart b/compass_app/app/lib/domain/models/destination/destination.dart index 62bfcd0ee..457a12533 100644 --- a/compass_app/app/lib/domain/models/destination/destination.dart +++ b/compass_app/app/lib/domain/models/destination/destination.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'package:freezed_annotation/freezed_annotation.dart'; part 'destination.freezed.dart'; diff --git a/compass_app/app/lib/domain/models/itinerary_config/itinerary_config.dart b/compass_app/app/lib/domain/models/itinerary_config/itinerary_config.dart index 2c7e77c9e..7d55b7c64 100644 --- a/compass_app/app/lib/domain/models/itinerary_config/itinerary_config.dart +++ b/compass_app/app/lib/domain/models/itinerary_config/itinerary_config.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'package:freezed_annotation/freezed_annotation.dart'; part 'itinerary_config.freezed.dart'; diff --git a/compass_app/app/lib/domain/models/user/user.dart b/compass_app/app/lib/domain/models/user/user.dart index d369098d1..001a5ad06 100644 --- a/compass_app/app/lib/domain/models/user/user.dart +++ b/compass_app/app/lib/domain/models/user/user.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'package:freezed_annotation/freezed_annotation.dart'; part 'user.freezed.dart'; diff --git a/compass_app/app/lib/domain/use_cases/booking/booking_create_use_case.dart b/compass_app/app/lib/domain/use_cases/booking/booking_create_use_case.dart index 653d919fe..eff951159 100644 --- a/compass_app/app/lib/domain/use_cases/booking/booking_create_use_case.dart +++ b/compass_app/app/lib/domain/use_cases/booking/booking_create_use_case.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'package:logging/logging.dart'; import '../../../data/repositories/activity/activity_repository.dart'; diff --git a/compass_app/app/lib/domain/use_cases/booking/booking_share_use_case.dart b/compass_app/app/lib/domain/use_cases/booking/booking_share_use_case.dart index ac20fab32..cff2f852b 100644 --- a/compass_app/app/lib/domain/use_cases/booking/booking_share_use_case.dart +++ b/compass_app/app/lib/domain/use_cases/booking/booking_share_use_case.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'package:flutter/material.dart'; import 'package:logging/logging.dart'; import 'package:share_plus/share_plus.dart'; diff --git a/compass_app/app/lib/main.dart b/compass_app/app/lib/main.dart index e7e3603bc..65b39e0d4 100644 --- a/compass_app/app/lib/main.dart +++ b/compass_app/app/lib/main.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'package:flutter_localizations/flutter_localizations.dart'; import 'package:provider/provider.dart'; diff --git a/compass_app/app/lib/main_development.dart b/compass_app/app/lib/main_development.dart index abcb53577..4754e22cd 100644 --- a/compass_app/app/lib/main_development.dart +++ b/compass_app/app/lib/main_development.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'package:flutter/material.dart'; import 'package:logging/logging.dart'; import 'package:provider/provider.dart'; diff --git a/compass_app/app/lib/main_staging.dart b/compass_app/app/lib/main_staging.dart index a7f76bfc5..d6d87ba99 100644 --- a/compass_app/app/lib/main_staging.dart +++ b/compass_app/app/lib/main_staging.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'package:flutter/material.dart'; import 'package:logging/logging.dart'; import 'package:provider/provider.dart'; diff --git a/compass_app/app/lib/routing/router.dart b/compass_app/app/lib/routing/router.dart index cdf94a5b8..e0e085b43 100644 --- a/compass_app/app/lib/routing/router.dart +++ b/compass_app/app/lib/routing/router.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'package:flutter/cupertino.dart'; import 'package:go_router/go_router.dart'; import 'package:provider/provider.dart'; diff --git a/compass_app/app/lib/routing/routes.dart b/compass_app/app/lib/routing/routes.dart index ee48f97e0..bba607532 100644 --- a/compass_app/app/lib/routing/routes.dart +++ b/compass_app/app/lib/routing/routes.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + class Routes { static const home = '/'; static const login = '/login'; diff --git a/compass_app/app/lib/utils/command.dart b/compass_app/app/lib/utils/command.dart index 40469afb6..2e37434b9 100644 --- a/compass_app/app/lib/utils/command.dart +++ b/compass_app/app/lib/utils/command.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'dart:async'; import 'package:flutter/foundation.dart'; diff --git a/compass_app/app/lib/utils/image_error_listener.dart b/compass_app/app/lib/utils/image_error_listener.dart index 1b9af39f0..79c209283 100644 --- a/compass_app/app/lib/utils/image_error_listener.dart +++ b/compass_app/app/lib/utils/image_error_listener.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'package:logging/logging.dart'; final _log = Logger('ImageErrorListener'); diff --git a/compass_app/app/lib/utils/result.dart b/compass_app/app/lib/utils/result.dart index 46e273363..5370700b0 100644 --- a/compass_app/app/lib/utils/result.dart +++ b/compass_app/app/lib/utils/result.dart @@ -1,3 +1,7 @@ +// Copyright 2024 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + /// Utility class to wrap result data /// /// Evaluate the result using a switch statement: