hasOverflow method

bool hasOverflow(
  1. int dayIdx
)

Returns true if there are overflowed events for the given day index.

Implementation

bool hasOverflow(int dayIdx) => (_calculatedOverflowCounts[dayIdx] ?? 0) > 0;