AnimationStatus status

The current status of this animation.

Source

@override
AnimationStatus get status {
  // If one of the sub-animations is moving, use that status. Otherwise,
  // default to `first`.
  if (next.status == AnimationStatus.forward || next.status == AnimationStatus.reverse)
    return next.status;
  return first.status;
}