TileStyleTween constructor

TileStyleTween({
  1. TileStyle? begin,
  2. TileStyle? end,
})

Creates a TextTileStyle tween.

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

Implementation

TileStyleTween({TileStyle? begin, TileStyle? end})
    : super(begin: begin, end: end);