listNotifications abstract method

Future<NotificationList> listNotifications({
  1. required Session session,
  2. int limit = defaultLimit,
  3. String? cursor,
})

Listing notifications

Players can list the notifications they received while offline.

Implementation

Future<model.NotificationList> listNotifications({
  required model.Session session,
  int limit = defaultLimit,
  String? cursor,
});