contains method

  1. @override
bool contains(
  1. String path
)
override

Return true if the path references a resource in this folder.

The path must be absolute and normalized.

Implementation

@override
bool contains(String path) {
  return p.isWithin(directory.path, path);
}