getAttribute method
Returns DOMAttribute entry for name
.
Implementation
DOMAttribute? getAttribute(String name) {
if (hasEmptyAttributes) return null;
return _attributes![name];
}
Returns DOMAttribute entry for name
.
DOMAttribute? getAttribute(String name) {
if (hasEmptyAttributes) return null;
return _attributes![name];
}