parseHtml method

HtmlDocument parseHtml({
  1. required Window window,
  2. required String content,
  3. String mime = 'text/html',
})

Implementation

HtmlDocument parseHtml({
  required Window window,
  required String content,
  String mime = 'text/html',
}) {
  return html.parseHtml(window: window, content: content, mime: mime);
}