GitRepo constructor

GitRepo(
  1. String url,
  2. String? ref
)

Implementation

GitRepo(this.url, this.ref) {
  cache = path.join(cacheDirectory.path, path.split(url).last);
}