ProjectInfo constructor

ProjectInfo({
  1. bool isFlutterProject = false,
  2. required String rootDir,
  3. required Set<PackageInfo> packages,
  4. String? name,
  5. bool hasPubspec = false,
})

Implementation

ProjectInfo({
  this.isFlutterProject = false,
  required this.rootDir,
  required this.packages,
  this.name,
  this.hasPubspec = false,
});