tweenTo method

Tween<double> tweenTo(
  1. double end
)

Implementation

Tween<double> tweenTo(double end) {
  return Tween<double>(begin: this, end: end);
}