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