Verifica si el alto está entre dos valores
bool heightBetween(double min, double max) => height >= min && height <= max;