curveValue method
Returns the curve value at the given animation value.
Example:
final curved = CurvedAnimation(parent: controller, curve: Curves.easeIn);
final value = curved.curveValue(0.5);
Implementation
double curveValue(double t) {
return curve.transform(t);
}