TextTileStyleTween constructor

TextTileStyleTween({
  1. TextTileStyle? begin,
  2. TextTileStyle? end,
})

Creates a TextTileStyle tween.

the begin and end properties may be null; see TextTileStyle.lerp for the null handling semantics.

Implementation

TextTileStyleTween({TextTileStyle? begin, TextTileStyle? end})
    : super(begin: begin, end: end);