addHTML method

DOMNode addHTML(
  1. String html
)

Parses html and add it to content.

Implementation

DOMNode addHTML(String html) {
  var list = $html(html);
  if (list.isNotEmpty) {
    _addToContent(list);
    normalizeContent();
  }
  return this;
}