onClicked property

EventStream<Tab> get onClicked

Fired when a page action icon is clicked. This event will not fire if the page action has a popup.

Implementation

EventStream<Tab> get onClicked =>
    $js.chrome.pageAction.onClicked.asStream(($c) => ($js_tabs.Tab tab) {
          return $c(Tab.fromJS(tab));
        }.toJS);