createHtmlDocument method

HtmlDocument createHtmlDocument([
  1. String? title
])

Implementation

HtmlDocument createHtmlDocument([String? title]) {
  return HtmlDocument.internal(
    window: window,
    contentType: 'text/html',
    filled: false,
  );
}