lerp static method
Lerps a BarAreaSpotsLine based on t
value, check Tween.lerp.
Implementation
static BarAreaSpotsLine lerp(
BarAreaSpotsLine a,
BarAreaSpotsLine b,
double t,
) {
return BarAreaSpotsLine(
show: b.show,
checkToShowSpotLine: b.checkToShowSpotLine,
flLineStyle: FlLine.lerp(a.flLineStyle, b.flLineStyle, t),
applyCutOffY: b.applyCutOffY,
);
}