isNotAnimating property
bool
get
isNotAnimating
Returns true if the animation is not animating (completed or dismissed).
Example:
if (animation.isNotAnimating) { ... }
Implementation
bool get isNotAnimating => !isAnimating;