navigator property
Implementation
late final Navigator navigator = () {
// Note that `as` expressions are required because of
// "dart:html OR universal_html" confusion by the analyzer.
final window = this;
final navigator = internalWindowController.windowBehavior.newNavigator(
window: window,
);
return navigator;
}();