operator > method

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

Greater than comparison.

Implementation

@nonVirtual
bool operator >(T other) => value > other.value;