operator > method

bool operator >(
  1. Date other
)

Checks if this is after other.

Implementation

bool operator >(final Date other) => _date.isAfter(other.toDateTime());