internalToString method
Internal method. __Not part of "dart:html".
Produces string representation of DOM tree.
Implementation
String internalToString() {
final sb = StringBuffer();
_printNode(sb, _getPrintingFlags(this), this);
return sb.toString();
}