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