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