matches method

  1. @override
bool matches(
  1. Element element
)
override

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';
}