lerp method
Linearly interpolate between this and another FTooltipStyle using the given factor t.
Implementation
@useResult
FTooltipStyle lerp(FTooltipStyle other, double t) => .new(
decoration: .lerp(decoration, other.decoration, t) ?? decoration,
backgroundFilter: t < 0.5 ? backgroundFilter : other.backgroundFilter,
padding: .lerp(padding, other.padding, t) ?? padding,
textStyle: .lerp(textStyle, other.textStyle, t) ?? textStyle,
);