tweenTo method

IntTween tweenTo(
  1. int end
)

Create an IntTween form this value to the provided end value

Implementation

IntTween tweenTo(int end) {
  return IntTween(begin: this, end: end);
}