findByTokens method

void findByTokens(
  1. List<String> tokens,
  2. List<AFScreenPrototype> results
)

Implementation

void findByTokens(List<String> tokens, List<AFScreenPrototype> results) {
  results.addAll(_connectedTests.where((test) {
    return AFSingleScreenTests.matchesTokens(test.id, tokens);
  }));
}