appendHtml method
Parses the specified text as HTML and adds the resulting node after the last child of this document fragment.
Implementation
void appendHtml(
String html, {
NodeValidator? validator,
NodeTreeSanitizer? treeSanitizer,
}) {
append(
Element.html(html, validator: validator, treeSanitizer: treeSanitizer),
);
}