isBefore method

bool isBefore(
  1. Day day
)

Returns true if this day occurs before other day.

This will call the DateTime.isBefore method.

Implementation

bool isBefore(Day day) => _time.isBefore(day._time);