projectSubDirectory method
Returns a sub-Directory inside projectDirectory.
Implementation
FutureOr<Directory> projectSubDirectory(String filePath) =>
projectDirectory.resolveMapped((projDir) {
return Directory.fromUri(projDir.uri.resolve(filePath));
});