hasPMCourse property
Whether any course falls in the afternoon period (5-9).
Implementation
bool get hasPMCourse => entries.any((e) => e.periods.any((p) => p.isPM));
Whether any course falls in the afternoon period (5-9).
bool get hasPMCourse => entries.any((e) => e.periods.any((p) => p.isPM));