projectFiles function
Returns a map of file paths → file contents for the core architecture.
Implementation
Map<String, String> projectFiles() => {
'lib/core/config/app_config.dart': _appConfig,
'lib/core/errors/app_exception.dart': _appException,
'lib/core/result/result.dart': _result,
'lib/core/network/data_strategy.dart': _dataStrategy,
'lib/core/network/connectivity_checker.dart': _connectivityChecker,
'lib/core/network/api_client.dart': _apiClient,
'lib/core/storage/local_storage.dart': _localStorage,
'lib/core/storage/hive_storage.dart': _hiveStorage,
'lib/core/storage/in_memory_storage.dart': _inMemoryStorage,
'lib/core/events/event_bus.dart': _eventBus,
'lib/core/events/app_events.dart': _appEvents,
'lib/core/controller/base_controller.dart': _baseController,
'lib/core/memory/service_priority.dart': _servicePriority,
'lib/core/memory/managed_service.dart': _managedService,
'lib/core/memory/memory_events.dart': _memoryEvents,
'lib/core/memory/memory_manager.dart': _memoryManager,
'lib/core/memory/memory_aware_controller.dart': _memoryAwareController,
'lib/core/notification/notification_service.dart': _notificationService,
'lib/core/notification/app_notification.dart': _appNotification,
'lib/core/notification/snackbar_notification_service.dart':
_snackbarService,
'lib/core/theme/app_theme.dart': _appTheme,
'lib/core/widgets/error_display.dart': _errorDisplay,
'lib/core/widgets/loading_indicator.dart': _loadingIndicator,
'lib/core/di/app_dependencies.dart': _appDependencies,
'lib/core/di/providers.dart': _providers,
'lib/core/routes/app_routes.dart': _appRoutes,
'lib/main.dart': _mainDart,
'analysis_options.yaml': _analysisOptions,
};