markAllAsRead method

Future<void> markAllAsRead()

Marks all of the user's notifications as read.

Implementation

Future<void> markAllAsRead() async {
  await notificationsRepository.markAllNotificationsAsRead();
}