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,
})

Create a Project

Implementation

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