insertAdjacentText method
Inserts text into the DOM at the specified location.
To see the possible values for where, read the doc for
insertAdjacentHtml.
See also:
Implementation
void insertAdjacentText(String where, String text) {
throw UnsupportedError(
'insertAdjacentText() is not available outside a browser context.');
}