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