notificationsHasReachedEndProvider top-level property

AutoDisposeProvider<bool> notificationsHasReachedEndProvider
final

Provides whether the end of the notification list has been reached.

Implementation

final notificationsHasReachedEndProvider = Provider.autoDispose<bool>(
  (ref) => ref.watch(notificationsApiNotifierProvider).hasReachedEnd,
);