operator > method

bool operator >(
  1. Decimal other
)

Whether this number is numerically greater than other.

Implementation

bool operator >(Decimal other) => _rational > other._rational;