isAfter method

bool isAfter(
  1. Day day
)

Returns true if this day occurs after other day.

This will call the DateTime.isAfter method.

Implementation

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