equalsAttributeValue method
Parses value and returns true if is equals to this instance value.
Implementation
@override
bool equalsAttributeValue(Object? value) {
  if (value == null) !hasAttributeValue;
  var css = CSS(value);
  return this.css == css;
}