isGreaterThanOrEqualTo method

bool isGreaterThanOrEqualTo(
  1. num b
)

Checks if GREATER than num b.

Parameters

  • b: The value to compare

Returns

  • true if this value is greater than or equal to the other value
  • false otherwise

Implementation

bool isGreaterThanOrEqualTo(num b) => isGreaterThan(b) || equals(b);