lerpPieChartSectionDataList function
List<PieChartSectionData> ?
lerpPieChartSectionDataList(
- List<
PieChartSectionData> ? a, - List<
PieChartSectionData> ? b, - 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);