shouldIncludeDir property
bool
get
shouldIncludeDir
Implementation
bool get shouldIncludeDir {
// to ignore?
if (includeOptions!.includeGlobs!.isNotEmpty) {
// only test on sub
for (final glob in includeOptions!.includeGlobs!) {
if (glob.isDir) {
if (glob.matches(srcSub!)) {
return true;
}
}
}
}
return false;
}