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