getNamedChild static method
Implementation
static XmlElement? getNamedChild(XmlElement? e, String name) {
XmlElement? c = getFirstChild(e);
while (c != null && name != c.name.local && name != c.name.qualified) {
c = getNextSibling(c);
}
return c;
}