dismissAll method
void
dismissAll()
Dismisses all notifications.
Implementation
void dismissAll() {
for (final n in _notifications) {
n.dismissed = true;
}
}
Dismisses all notifications.
void dismissAll() {
for (final n in _notifications) {
n.dismissed = true;
}
}