notifications property

JSNotifications get notifications

Use the chrome.notifications API to create rich notifications using templates and show these notifications to users in the system tray.

Implementation

JSNotifications get notifications {
  var notificationsNullable = this.notificationsNullable;
  if (notificationsNullable == null) {
    throw ApiNotAvailableException('chrome.notifications');
  }
  return notificationsNullable;
}