isInRange: Check if this is in range
bool isInRange(num min, num max) { if (isNull) return false; return this! >= min && this! <= max; }