SemesterRecordData typedef

SemesterRecordData = ({List<UserSemesterRanking> rankings, List<ScoreDetail> scores, UserAcademicSummary summary})

Aggregated academic data for one semester.

Groups a UserAcademicSummary with its per-course ScoreDetail rows and UserSemesterRanking entries.

Implementation

typedef SemesterRecordData = ({
  UserAcademicSummary summary,
  List<ScoreDetail> scores,
  List<UserSemesterRanking> rankings,
});