deleteNotifications abstract method

Future<void> deleteNotifications({
  1. required Session session,
  2. required Iterable<String> notificationIds,
})

Deleting notifications

Players can delete notifications once they’ve read them.

Implementation

Future<void> deleteNotifications({
  required model.Session session,
  required Iterable<String> notificationIds,
});