Check if the number is in the range min to max. Returns true if the number is in the range, false otherwise.
min
max
true
false
bool isInRange(num min, num max) => this >= min && this <= max;