operator >= method

bool operator >=(
  1. Decimal128 other
)

Returns true if this is greater than or equal to other.

Implementation

bool operator >=(Decimal128 other) => compareTo(other) >= 0;