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