putDOMAttribute method
Implementation
DOMElement putDOMAttribute(DOMAttribute attribute) {
// ignore: prefer_collection_literals
_attributes ??= LinkedHashMap();
_attributes![attribute.name] = attribute;
return this;
}
DOMElement putDOMAttribute(DOMAttribute attribute) {
// ignore: prefer_collection_literals
_attributes ??= LinkedHashMap();
_attributes![attribute.name] = attribute;
return this;
}