tweenTo method

TextStyleTween tweenTo(
  1. TextStyle end
)

Create an TextStyleTween form this value to the provided end value

Implementation

TextStyleTween tweenTo(TextStyle end) {
  return TextStyleTween(begin: this, end: end);
}