ProjectSummary constructor

ProjectSummary({
  1. required TechStack techStack,
  2. required ArchitecturePattern architecturePattern,
  3. int totalFiles = 0,
  4. int screens = 0,
  5. int models = 0,
  6. int repositories = 0,
  7. int services = 0,
  8. List<String> learningPath = const [],
})

Implementation

ProjectSummary({
  required this.techStack,
  required this.architecturePattern,
  this.totalFiles = 0,
  this.screens = 0,
  this.models = 0,
  this.repositories = 0,
  this.services = 0,
  this.learningPath = const [],
});