tweenTo method
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);
}
Create an Tween<double> form this value to the provided end value
Tween<double> tweenTo(double end) {
return Tween<double>(begin: this, end: end);
}