removeAttribute method
Implementation
@mustCallSuper
@override
void removeAttribute(String qualifiedName) {
bool shouldRebuild = shouldElementRebuild(qualifiedName, getAttribute(qualifiedName), null);
super.removeAttribute(qualifiedName);
if (state != null && shouldRebuild) {
state!.requestUpdateState();
}
attributeDidUpdate(qualifiedName, '');
}