lerpVerticalRangeAnnotationList function

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

Implementation

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