lerp static method

Lerps a RadarDataSet based on t value, check Tween.lerp.

Implementation

static RadarEntry lerp(RadarEntry a, RadarEntry b, double t) {
  return RadarEntry(value: lerpDouble(a.value, b.value, t)!);
}