void removeTweens(TweenObject tweenObject)

Removes all tweens from the specified tweenObject.

Source

void removeTweens(TweenObject tweenObject) {

  var link = _firstAnimatableLink;
  while (identical(link, _lastAnimatableLink) == false) {
    var animatable = link.animatable;
    if (animatable is Tween && identical(animatable.tweenObject, tweenObject)) {
      link.animatable = null;
    }
    link = link.nextAnimatableLink;
  }
}