notificationsProvider top-level property
final
Provides all notifications for the current user.
To mark all notifications as read or filter them, use notificationsController.
Implementation
final notificationsProvider =
StateNotifierProvider<NotificationsProviderState, List<Notification>>(
(ref) {
final notificationsRepository = ref.watch(notificationsRepositoryProvider);
return NotificationsProviderState(notificationsRepository);
});