apiKeyProvider top-level property
final
Provider for the API key state that watches for changes.
Implementation
final apiKeyProvider = StateNotifierProvider<ApiKeyNotifier, String?>((ref) {
final apiKeyService = ref.watch(apiKeyServiceProvider);
return ApiKeyNotifier(apiKeyService);
});