Score constructor

Score({
  1. required String? courseNumber,
  2. bool isPreScore = false,
  3. required String title,
  4. required String units,
  5. String? hours,
  6. String? required,
  7. String? at,
  8. String? middleScore,
  9. String? generalScore,
  10. String? finalScore,
  11. String? semesterScore,
  12. String? remark,
})

Implementation

Score({
  required this.courseNumber,
  this.isPreScore = false,
  required this.title,
  required this.units,
  this.hours,
  this.required,
  this.at,
  this.middleScore,
  this.generalScore,
  this.finalScore,
  this.semesterScore,
  this.remark,
});