Animatable<T> chain(Animatable<double> parent)

Returns a new Animatable whose value is determined by first evaluating the given parent and then evaluating this object.

Source

Animatable<T> chain(Animatable<double> parent) {
  return new _ChainedEvaluation<T>(parent, this);
}