ProjectInfo constructor

ProjectInfo({
  1. required String path,
  2. required List<CacheTarget> targets,
  3. bool isPriority = false,
})

Implementation

ProjectInfo({
  required this.path,
  required this.targets,
  this.isPriority = false,
});