attributeChangedCallback method
Implementation
@override
void attributeChangedCallback(
String name,
String? oldValue,
String? newValue,
) {
super.attributeChangedCallback(name, oldValue, newValue);
if (observedAttributes.contains(name)) {
if (_attrs.containsKey(name)) {
_attrs[name]!.value = newValue;
}
}
}