lerpIntList function

List<int>? lerpIntList(
  1. List<int>? a,
  2. List<int>? b,
  3. double t
)

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

Implementation

List<int>? lerpIntList(List<int>? a, List<int>? b, double t) =>
    lerpList(a, b, t, lerp: lerpInt);