resolveDirectories method
Resolve the Directorys inside this collection.
To include also files within each directory, use resolve instead.
Included directories are only returned if they exist at the time of resolving.
Implementation
Stream<Directory> resolveDirectories() {
return _resolveDirectoryEntries().map((e) => Directory(e.path));
}