Returns true if the number is between min and max inclusive.
min
max
bool isInRange(num min, final num max) => this >= min && this <= max;