Lerps int list based on t value, check Tween.lerp.
t
List<int>? lerpIntList(List<int>? a, List<int>? b, double t) => lerpList(a, b, t, lerp: lerpInt);