DartleCache constructor
DartleCache(
- 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();
}