showGeneratorRunningNotificationsPrefProvider top-level property
final
Provides the user's preference for showing generator running notifications
Implementation
final showGeneratorRunningNotificationsPrefProvider =
StateNotifierProvider<PreferenceNotifier<bool>, bool>(
(ref) => PreferenceNotifier.watchBool(
ref,
'show_generator_running_notifications',
defaultValue: true,
),
);