tweenTo method

Tween<Size> tweenTo(
  1. Size end
)

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

Implementation

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