isExcluded method

bool isExcluded(
  1. String path
)

Implementation

bool isExcluded(String path) {
  return excludeGlobs.any((glob) => glob.matches(path));
}