Checks if this integer is between min and max (inclusive).
min
max
Example:
int value = 50; bool isInRange = value.isBetween(0, 100); // true
bool isBetween(int min, int max) => this >= min && this <= max;