ProjectGenerationResult constructor

ProjectGenerationResult({
  1. required List<String> createdPaths,
  2. required List<String> skippedPaths,
})

Creates a project generation result.

Implementation

ProjectGenerationResult({
  required this.createdPaths,
  required this.skippedPaths,
});