appendHtml method

void appendHtml (
  1. String text,
  2. {NodeValidator? validator,
  3. NodeTreeSanitizer? treeSanitizer}
)

Parses the specified text as HTML and adds the resulting node after the last child of this document fragment.

Implementation

void appendHtml(String text,
    {NodeValidator? validator, NodeTreeSanitizer? treeSanitizer}) {
  this.append(new DocumentFragment.html(text,
      validator: validator, treeSanitizer: treeSanitizer));
}

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.13.0/dart-html/DocumentFragment/appendHtml.html