webNavigation property
JSWebNavigation
get
webNavigation
Use the chrome.webNavigation
API to receive notifications about the
status of navigation requests in-flight.
Implementation
JSWebNavigation get webNavigation {
var webNavigationNullable = this.webNavigationNullable;
if (webNavigationNullable == null) {
throw ApiNotAvailableException('chrome.webNavigation');
}
return webNavigationNullable;
}