lerp method
Linearly interpolate between this and another FSelectSearchStyle using the given factor t.
Implementation
@useResult
FSelectSearchStyle lerp(FSelectSearchStyle other, double t) => .new(
fieldStyle: fieldStyle.lerp(other.fieldStyle, t),
dividerStyle: dividerStyle.lerp(other.dividerStyle, t),
progressStyle: progressStyle.lerp(other.progressStyle, t),
);