isAnimating property

  1. @override
bool isAnimating
override

A getter that returns true if the animation is running.

Implementation

@override
bool get isAnimating {
  if (_controller == null) return false;

  return _controller!.value > 0.0 && _controller!.value < 1.0;
}