isLessThanOrEqualTo method
Checks if LOWER than num b.
Parameters
b
: The value to compare
Returns
true
if this value is less than or equal to the other valuefalse
otherwise
Implementation
bool isLessThanOrEqualTo(num b) => isLessThan(b) || equals(b);