matches method

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

Implementation

@override
bool matches(Element elem) {
  for(final sel in selectors) {
    if(sel.matches(elem)) {
      return true;
    }
  }
  return false;
}