appendHtml method

void appendHtml(String text, { NodeValidator validator, NodeTreeSanitizer treeSanitizer })

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

Source

void appendHtml(String text,
    {NodeValidator validator, NodeTreeSanitizer treeSanitizer}) {
  this.insertAdjacentHtml('beforeend', text,
      validator: validator, treeSanitizer: treeSanitizer);
}

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/1.24.3/dart-html/Element/appendHtml.html