fetchNotifications method

  1. @override
Future<List<Notification>> fetchNotifications()
override

Fetches all notifications for the currently logged in user.

Implementation

@override
Future<List<Notification>> fetchNotifications() async {
  log.warning(
    "Tried to fetch notifications when the user is not logged in. This should not happen.",
  );

  return [];
}