ProjectInfo constructor

const ProjectInfo({
  1. required String name,
  2. required ProjectType type,
  3. ProjectFramework framework = ProjectFramework.none,
  4. PackageManager? packageManager,
  5. required String rootPath,
  6. String? version,
  7. String? description,
  8. int dependencyCount = 0,
  9. int devDependencyCount = 0,
  10. List<String> scripts = const [],
  11. List<String> entryPoints = const [],
  12. String? testCommand,
  13. String? buildCommand,
  14. String? lintCommand,
})

Implementation

const ProjectInfo({
  required this.name,
  required this.type,
  this.framework = ProjectFramework.none,
  this.packageManager,
  required this.rootPath,
  this.version,
  this.description,
  this.dependencyCount = 0,
  this.devDependencyCount = 0,
  this.scripts = const [],
  this.entryPoints = const [],
  this.testCommand,
  this.buildCommand,
  this.lintCommand,
});