hasNoonCourse property

bool get hasNoonCourse

Whether any course falls in the noon period (N).

Implementation

bool get hasNoonCourse =>
    entries.any((e) => e.periods.any((p) => p == Period.nPeriod));