getAttributeNode method
Return the attribute node with the given name
, or null
.
Implementation
@override
XmlAttribute? getAttributeNode(String name, {String? namespace}) {
final tester = createNameMatcher(name, namespace);
for (final attribute in attributes) {
if (tester(attribute)) {
return attribute;
}
}
return null;
}