removeAttribute method

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

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, '');
}