Returns true if this juggler contains the specified animatable
.
Source
bool contains(Animatable animatable) { if (animatable != null) { var link = _firstAnimatableLink; while (identical(link, _lastAnimatableLink) == false) { if (identical(link.animatable, animatable)) return true; link = link.nextAnimatableLink; } } return false; }