loadMoreNotificationsProvider top-level property
final
Provides a use case for loading more of the user's list of notifications.
After being called, the allNotificationsProvider's value will become longer, with additional notifications appended.
Returns true if the end of the notification list has been reached,
and false otherwise.
Implementation
final loadMoreNotificationsProvider = Provider<LoadMoreNotificationsUseCase>(
(ref) => loadMoreNotificationsApi,
);