operator >= method

bool operator >=(
  1. Decimal other
)

Greater than or equal to

Implementation

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