lerpBarChartRodStackList function

Lerps BarChartRodStackItem list based on t value, check Tween.lerp.

Implementation

List<BarChartRodStackItem>? lerpBarChartRodStackList(
  List<BarChartRodStackItem>? a,
  List<BarChartRodStackItem>? b,
  double t,
) =>
    lerpList(a, b, t, lerp: BarChartRodStackItem.lerp);