onCreated property
EventStream<DownloadItem>
get
onCreated
This event fires with the DownloadItem object when a download begins.
Implementation
EventStream<DownloadItem> get onCreated => $js.chrome.downloads.onCreated
.asStream(($c) => ($js.DownloadItem downloadItem) {
return $c(DownloadItem.fromJS(downloadItem));
});