Returns true if the animation value is less than the threshold.
Example:
animation.isBelow(0.5); // true if value < 0.5
bool isBelow(double threshold) => value < threshold;