isPlaying property

bool isPlaying

Gets whether the animation is currently playing.

Implementation

bool get isPlaying {
  if (_controller == null) {
    return false;
  }

  return _controller!.isAnimating;
}