operator > abstract method

  1. @override
bool operator >(
  1. covariant U other
)
override

> operator to compare this and other. If this is overridden, the < operator uses it to compute its value, but can also be overridden

USE EasyComparable IF YOU ONLY WANT TO COMPARE TO ANY Object

If you need to specify what Type is used on > and < operators, use SpecificComparable

Implementation

@override
bool operator >(covariant U other);