BuildCache constructor

const BuildCache({
  1. required String projectName,
  2. required String targetLabel,
  3. Directory? cacheRoot,
  4. Logger? logger,
})

Implementation

const BuildCache({
  required this.projectName,
  required this.targetLabel,
  this.cacheRoot,
  this.logger,
});