isForward property
bool
get
isForward
Returns true if the animation is forward.
Example:
if (animation.isForward) { ... }
Implementation
bool get isForward => status == AnimationStatus.forward;
Returns true if the animation is forward.
Example:
if (animation.isForward) { ... }
bool get isForward => status == AnimationStatus.forward;