AvgCourseGradeWithCutoffData constructor

AvgCourseGradeWithCutoffData({
  1. Map<String, Object> gradeCutoffs = const {},
  2. required double averageGrade,
})

Returns a new AvgCourseGradeWithCutoffData instance.

Implementation

AvgCourseGradeWithCutoffData({
  this.gradeCutoffs = const {},
  required this.averageGrade,
});