fetchNotifications method
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 [];
}