isBefore method

bool isBefore(
  1. Date other
)

Returns if this date is before other.

Implementation

bool isBefore(Date other) => _time.isBefore(other._time);