removeAttribute method

  1. @override
void removeAttribute(
  1. String key
)
override

Implementation

@override
void removeAttribute(String key) {
  super.removeAttribute(key);
  if (_state != null) {
    _state!.onAttributeChanged(attributes);
  }
}