keepGoing property

bool keepGoing

Whether the controller driving this animation should keep requesting frames be drawn.

Implementation

bool get keepGoing =>
    animation.loop != Loop.oneShot ||
    (directedSpeed > 0 && _time < animation.endSeconds) ||
    (directedSpeed < 0 && _time > animation.startSeconds);