ListTileStyleTween constructor

ListTileStyleTween({
  1. ListTileStyle? begin,
  2. ListTileStyle? end,
})

Creates a ListTileStyle tween.

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

Implementation

ListTileStyleTween({ListTileStyle? begin, ListTileStyle? end})
    : super(begin: begin, end: end);