DartleCache constructor

DartleCache(
  1. String rootDir
)

Create an instance of DartleCache at the given root directory.

Implementation

DartleCache(this.rootDir)
    : _hashesDir = path.join(rootDir, 'hashes'),
      _tasksDir = path.join(rootDir, 'tasks'),
      _executablesDir = path.join(rootDir, 'executables') {
  init();
}