SettingsScreen constructor

const SettingsScreen({
  1. Key? key,
  2. required FavoritesService favoritesService,
  3. required ApiKeyService apiKeyService,
  4. FavoritesServiceManager? favoritesServiceManager,
  5. bool fromApiKeyPrompt = false,
})

Creates a new SettingsScreen widget.

Implementation

const SettingsScreen({
  super.key,
  required this.favoritesService,
  required this.apiKeyService,
  this.favoritesServiceManager,
  this.fromApiKeyPrompt = false,
});