notificationsProvider top-level property

StateNotifierProvider<NotificationsProviderState, List<Notification>> notificationsProvider
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);
});