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