isAfter method

bool isAfter(
  1. Date other
)

Whether this date is after other.

Implementation

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