onInstalled property

EventStream<ExtensionInfo> get onInstalled

Fired when an app or extension has been installed.

Implementation

EventStream<ExtensionInfo> get onInstalled =>
    $js.chrome.management.onInstalled
        .asStream(($c) => ($js.ExtensionInfo info) {
              return $c(ExtensionInfo.fromJS(info));
            }.toJS);