hasAttribute method

  1. @override
bool hasAttribute(
  1. String tagName,
  2. String attributeName
)
override

Implementation

@override
bool hasAttribute(String tagName, String attributeName) {
  var elementAttributes =
      attributeSchema[tagName.toLowerCase()] ?? attributeSchema['unknown']!;
  return elementAttributes.contains(attributeName.toLowerCase());
}