lerpFlSpotList function

List<AFlSpot>? lerpFlSpotList(
  1. List<AFlSpot>? a,
  2. List<AFlSpot>? b,
  3. double t
)

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

Implementation

List<AFlSpot>? lerpFlSpotList(List<AFlSpot>? a, List<AFlSpot>? b, double t) =>
    lerpList(a, b, t, lerp: AFlSpot.lerp);