matches method
Determines if the given HTML element matches the '
Parameters:
element: The HTML element to evaluate.
Returns:
true if the element matches the '
Implementation
@override
bool matches(dom.Element element) {
return element.localName == 'pullquote';
}