animValue property
double
get
animValue
Returns the current animation value after applying the curve transformation. If no animation is active, returns the initial tween value.
Implementation
double get animValue =>
_curve?.transform(_animation?.value ?? 0.0) ?? _tween.begin!;