removeAttribute method

  1. @mustCallSuper
void removeAttribute(
  1. String qualifiedName
)

Implementation

@mustCallSuper
void removeAttribute(String qualifiedName) {
  if (qualifiedName == _STYLE_PROPERTY) {
    _removeInlineStyle();
  } else if (qualifiedName == _CLASS_NAME) {
    className = EMPTY_STRING;
  }
  attributes.remove(qualifiedName);
}