getAttribute method

DOMAttribute? getAttribute(
  1. String name
)

Returns DOMAttribute entry for name.

Implementation

DOMAttribute? getAttribute(String name) {
  return _attributes?[name];
}