ProjectInfo constructor

const ProjectInfo({
  1. required String name,
  2. required String version,
  3. required String projectPath,
  4. String? description,
})

Implementation

const ProjectInfo({
  required this.name,
  required this.version,
  required this.projectPath,
  this.description,
});