operator > method

bool operator >(
  1. Decimal128 other
)

Returns true if this is greater than other.

Implementation

bool operator >(Decimal128 other) {
  return _realmLib.realm_dart_decimal128_greater_than(_value, other._value);
}