onShowSettings property

EventStream<void> get onShowSettings

The user clicked on a link for the app's notification settings. As of Chrome 47, only ChromeOS has UI that dispatches this event. As of Chrome 65, that UI has been removed from ChromeOS, too.

Implementation

EventStream<void> get onShowSettings =>
    $js.chrome.notifications.onShowSettings.asStream(($c) => () {
          return $c(null);
        }.toJS);