operator > method

bool operator >(
  1. covariant Product other
)

Return if this instance is greater than the other.

Implementation

bool operator >(covariant Product other) => compareTo(other) > 0;