getFirstChild method
- String tagName
Returns a child node with the given tagName
.
Implementation
XmlElement? getFirstChild(String tagName) => findElements(tagName).firstOrNull;
Returns a child node with the given tagName
.
XmlElement? getFirstChild(String tagName) => findElements(tagName).firstOrNull;