Project constructor

Project({
  1. required Engine engine,
  2. required String path,
  3. required PubyConfig config,
  4. required bool example,
  5. required bool hidden,
  6. bool exclude = false,
  7. required Set<String> dependencies,
  8. required bool fvm,
  9. required ProjectType type,
  10. ProjectType? parentType,
})

Create a Project

Implementation

Project({
  required this.engine,
  required this.path,
  required this.config,
  required this.example,
  required this.hidden,
  this.exclude = false,
  required this.dependencies,
  required this.fvm,
  required this.type,
  this.parentType,
});