document property

Document document
latefinal

The newest document in this window.

Other resources

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;
}();