getRepositoryCacheDir method

Directory getRepositoryCacheDir(
  1. String repoPath
)

Gets the cache directory for a specific repository

Implementation

Directory getRepositoryCacheDir(String repoPath) {
  final repoName = basename(repoPath);
  return Directory(join(_cacheDir.path, repoName));
}