setAttribute method
Implementation
@mustCallSuper
void setAttribute(String qualifiedName, String value) {
ElementAttributeProperty? propertyHandler = _attributeProperties[qualifiedName];
if (propertyHandler != null && propertyHandler.setter != null) {
propertyHandler.setter!(value);
}
internalSetAttribute(qualifiedName, value);
}