putDOMAttribute method

DOMElement putDOMAttribute(
  1. DOMAttribute attribute
)

Implementation

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

  return this;
}