matchAll method

List<String> matchAll(
  1. List<String> paths
)

Filters paths, returning only those that match.

Implementation

List<String> matchAll(List<String> paths) => paths.where(match).toList();