putDOMAttribute method

DOMElement putDOMAttribute(
  1. DOMAttribute attribute
)

Implementation

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