createTextNode method
Implementation
TextNode createTextNode(String data, [BindingContext? context]) {
TextNode textNode = TextNode(data, context);
textNode.ownerDocument = this;
return textNode;
}
TextNode createTextNode(String data, [BindingContext? context]) {
TextNode textNode = TextNode(data, context);
textNode.ownerDocument = this;
return textNode;
}