includesDir method

bool includesDir(
  1. String dir
)

Check if this collection includes a directory path.

Implementation

bool includesDir(String dir) {
  return directories.any((d) => d.isWithin(dir, isDir: true));
}