lerpPieChartSectionDataList function

List<PieChartSectionData>? lerpPieChartSectionDataList(
  1. List<PieChartSectionData>? a,
  2. List<PieChartSectionData>? b,
  3. double t
)

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

Implementation

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