contains method

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

Implementation

@override
bool contains(String key) {
  final normalized = getAbsolutePath(key: key, dirName: root);
  return path.isWithin(root, normalized);
}