showWarningNotificationsPrefProvider top-level property

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