isGreaterThanOrEqualTo method
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 valuefalse
otherwise
Implementation
bool isGreaterThanOrEqualTo(num b) => isGreaterThan(b) || equals(b);