operator > method

  1. @nonVirtual
  2. @useResult
bool operator >(
  1. T other
)

Returns true if this is more than other.

Implementation

@nonVirtual
@useResult bool operator > (T other) => compareTo(other) > 0;