createNotMatcher<T> static method

SelectorMatcher<T> createNotMatcher<T>(
  1. List<CssSelector> notSelectors,
  2. T cbContext
)

Implementation

static SelectorMatcher<T> createNotMatcher<T>(
  List<CssSelector> notSelectors,
  T cbContext,
) {
  var notMatcher = SelectorMatcher<T>();
  notMatcher.addSelectables(notSelectors, cbContext);
  return notMatcher;
}