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