apiKeyProvider top-level property

StateNotifierProvider<ApiKeyNotifier, String?> apiKeyProvider
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);
});