getResolvedProjectDir function

Directory getResolvedProjectDir(
  1. String projectDir
)

Get the project Directory with a full path.

Implementation

Directory getResolvedProjectDir(final String projectDir) {
  return Directory(path.canonicalize(projectDir));
}