status property
The current status of the value's animation.
Possible status values:
- AnimationStatus.dismissed when the ValueAnimation is created, before its first animation starts.
- AnimationStatus.forward when an animation is in progress.
- AnimationStatus.completed once an animation completes.
AnimationStatus.reverse is used in AnimationController and ToggleAnimation, but it does not apply to a ValueAnimation.
Implementation
@override
AnimationStatus get status => _lastReportedStatus;