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