isAnimating property

  1. @override
bool get isAnimating
override

A getter that returns true if the animation is running.

Implementation

@override
bool get isAnimating => _controller != null
    ? _controller!.value > 0.0 && _controller!.value < 1.0
    : false;