clearNotifications method

  1. @override
Future<void> clearNotifications()
override

Clear all notifications

Implementation

@override
Future<void> clearNotifications() {
  _notifications.clear();
  return serviceWorkerManager.cancelAllNotifications();
}