isAfter method

bool isAfter(
  1. Date other
)

Returns if this date is after other.

Implementation

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