markAllRead method

void markAllRead()

Marks all notifications as read.

Implementation

void markAllRead() {
  for (final n in _notifications) {
    n.read = true;
  }
}