tweenTo method

Tween<double> tweenTo(
  1. double end
)

Create an Tween<double> form this value to the provided end value

Implementation

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