hasNoonCourse property
Whether any course falls in the noon period (N).
Implementation
bool get hasNoonCourse =>
entries.any((e) => e.periods.any((p) => p == Period.nPeriod));
Whether any course falls in the noon period (N).
bool get hasNoonCourse =>
entries.any((e) => e.periods.any((p) => p == Period.nPeriod));