operator > method

bool operator >(
  1. T other
)

Returns true if this should be ordered strictly after other.

Implementation

bool operator >(T other) => compareTo(other) > 0;