HealthScore constructor

const HealthScore({
  1. required double overallScore,
  2. required List<CategoryScore> categoryScores,
  3. required Map<PriorityGroup, List<DiagnosticIssue>> priorityGroups,
  4. required List<Recommendation> recommendations,
  5. required int totalWeight,
  6. required int maxPossibleWeight,
  7. required ScoreWeights weights,
})

Implementation

const HealthScore({
  required this.overallScore,
  required this.categoryScores,
  required this.priorityGroups,
  required this.recommendations,
  required this.totalWeight,
  required this.maxPossibleWeight,
  required this.weights,
});