CourseGrade constructor Null safety
- {required Course course,
 - List<
double> partials = const [], - double finalExam = 0,
 - double semestralGrade = 0}
 
Implementation
const CourseGrade({
  required this.course,
  this.partials = const [],
  this.finalExam = 0,
  this.semestralGrade = 0,
});