operator > method

bool operator >(
  1. Date other
)

Whether this date is strictly after other.

Implementation

bool operator >(Date other) => _daysSinceEpoch > other._daysSinceEpoch;