hasAMCourse property
Whether any course falls in the morning period (1-4).
Implementation
bool get hasAMCourse => entries.any((e) => e.periods.any((p) => p.isAM));
Whether any course falls in the morning period (1-4).
bool get hasAMCourse => entries.any((e) => e.periods.any((p) => p.isAM));