lerpBarGroupList static method
Lerps between two Lists of BarGroup for a factor t.
Implementation
static List<BarGroup> lerpBarGroupList(
List<BarGroup>? current,
List<BarGroup> target,
double t,
) =>
lerpList(current, target, t, lerp: lerp);