markAllRead method
void
markAllRead()
Marks all notifications as read.
Implementation
void markAllRead() {
for (final n in _notifications) {
n.read = true;
}
}
Marks all notifications as read.
void markAllRead() {
for (final n in _notifications) {
n.read = true;
}
}