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);
}
Returns a new Animatable whose value is determined by first evaluating the given parent and then evaluating this object.
Animatable<T> chain(Animatable<double> parent) {
return new _ChainedEvaluation<T>(parent, this);
}