operator > method

bool operator >(
  1. DateTime other
)

Determines if this DateTime is after other.

Implementation

bool operator > (DateTime other) => other < this;