completed property

  1. @override
bool completed
override

Has the effect already finished?

For a finite animation, this property will turn true once the animation has finished running and the progress variable will no longer change in the future. For an infinite animation this should always return false.

Implementation

@override
bool get completed => _timer == _duration;