loadMoreNotificationsApi function

Future<bool> loadMoreNotificationsApi(
  1. BuildContext context
)

Load more of the currently logged-in user's notifications

Implementation

Future<bool> loadMoreNotificationsApi(BuildContext context) {
  return context.read(notificationsApiNotifierProvider.notifier).loadPage();
}