Lerps int list based on t value, check Tween.lerp.
t
int lerpInt(int a, int b, double t) => (a + (b - a) * t).round();