Node createTextNode(String text, [ doc = null ])

Source

Node createTextNode(String text, [doc = null]) {
  return new Text(text);
}