matches method

bool matches(
  1. List args
)

Implementation

bool matches(List<dynamic> args) {
  if (args[0].runtimeType == String && (args[0] as String).isEmpty) {
    return false;
  }
  return query_selector.matches(this, args.first);
}