matches method

bool matches(
  1. dynamic args
)

Implementation

bool matches(dynamic args) {
  final String? selector = _selectorFromArgs(args);
  if (selector == null || selector.isEmpty) return false;
  return query_selector.matches(this, selector);
}