isHidden function

bool isHidden(
  1. String path,
  2. String rootPath
)

Implementation

bool isHidden(String path, String rootPath) {
  // Strip rootPath
  final rootRelative = path.replaceFirst(rootPath, '');
  return reg.hasMatch(rootRelative);
}