Project constructor

const Project({
  1. required ProjectConfig? config,
  2. required String path,
  3. required PubSpec? pubspec,
})

Creates a new instance of Project.

The config parameter represents the configuration of the project. The path parameter is the directory path of the project. The pubspec parameter represents the pubspec.yaml file of the project.

Implementation

const Project({
  required this.config,
  required this.path,
  required this.pubspec,
});