tweenTo method

ColorTween tweenTo(
  1. Color end
)

Returns a ColorTween from this color to the given end color

Implementation

ColorTween tweenTo(Color end) {
  return ColorTween(begin: this, end: end);
}