showEmailNotificationsPrefProvider top-level property

StateNotifierProvider<PreferenceNotifier<bool>, bool> showEmailNotificationsPrefProvider
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,
  ),
);