True if in min, max inclusive (alias for isBetween).
min, max
@useResult bool isInRangeInclusive(num min, num max) => this >= min && this <= max;