insertAdjacentText method - SvgElement class - dart:svg library (original) (raw)

description

void insertAdjacentText(

  1. String where,
  2. String text )

override

Inserts text into the DOM at the specified location.

To see the possible values for where, read the doc forinsertAdjacentHtml.

See also:

Implementation

void insertAdjacentText(String where, String text) {
  throw new UnsupportedError("Cannot invoke insertAdjacentText on SVG.");
}