innerText method
Get all raw text contained within this node.
Implementation
String innerText() {
var result = "";
for (var child in _children) {
result += "${child.innerText()} ";
}
return result;
}
Get all raw text contained within this node.
String innerText() {
var result = "";
for (var child in _children) {
result += "${child.innerText()} ";
}
return result;
}