onImportBegan property

EventStream<void> get onImportBegan

Fired when a bookmark import session is begun. Expensive observers should ignore onCreated updates until onImportEnded is fired. Observers should still handle other notifications immediately.

Implementation

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