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