bool hasAnimatables

Check whether this Juggler has active animatables or not.

Source

bool get hasAnimatables {
  var link = _firstAnimatableLink;
  while (identical(link, _lastAnimatableLink) == false) {
    if (link.animatable != null) return true;
    link = link.nextAnimatableLink;
  }
  return false;
}