onCommitted property
EventStream<OnCommittedDetails>
get
onCommitted
Fired when a navigation is committed. The document (and the resources it refers to, such as images and subframes) might still be downloading, but at least part of the document has been received from the server and the browser has decided to switch to the new document.
Implementation
EventStream<OnCommittedDetails> get onCommitted =>
$js.chrome.webNavigation.onCommitted
.asStream(($c) => ($js.OnCommittedDetails details) {
return $c(OnCommittedDetails.fromJS(details));
}.toJS);