getAttribute method

DOMAttribute? getAttribute(
  1. String name
)

Returns DOMAttribute entry for name.

Implementation

DOMAttribute? getAttribute(String name) {
  if (hasEmptyAttributes) return null;
  return _attributes![name];
}