lerp method
Linearly interpolate between this and another FSliderThumbStyle using the given factor t
.
Implementation
@useResult
FSliderThumbStyle lerp(FSliderThumbStyle other, double t) => FSliderThumbStyle(
color: FWidgetStateMap.lerpColor(color, other.color, t),
borderColor: FWidgetStateMap.lerpColor(borderColor, other.borderColor, t),
borderWidth: lerpDouble(borderWidth, other.borderWidth, t) ?? borderWidth,
focusedOutlineStyle: focusedOutlineStyle.lerp(other.focusedOutlineStyle, t),
);