onStartup property
EventStream<void>
get
onStartup
Fired when a profile that has this extension installed first starts up. This event is not fired when an incognito profile is started, even if this extension is operating in 'split' incognito mode.
Implementation
EventStream<void> get onStartup =>
$js.chrome.runtime.onStartup.asStream(($c) => () {
return $c(null);
});