void appendHtml(
String text
)

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

Source

/**
 * Parses the specified text as HTML and adds the resulting node after the
 * last child of this element.
 */
void appendHtml(String text) {
  this.insertAdjacentHtml('beforeend', text);
}