greaterThanOrEqual method

bool greaterThanOrEqual(
  1. num other
)

Checks if value is greater than or equal to other. This is equivalent to the >= operator. Returns true if this is greater than or equal to other. Returns false if this is less than other.

Implementation

bool greaterThanOrEqual(num other) => isGreaterEqual(this, other);