unreadAll method
- String token,
- List<
Notification> notifications
override
Marks all notifications
as unread.
Implementation
@override
Future<void> unreadAll(String token, List<Notification> notifications) async {
for (final notification in notifications) {
await _setReadStatus(token, notification, false);
}
}