lerp method
Linearly interpolate between this and another FRawTileContentStyle using the given factor t.
Implementation
@useResult
FRawTileContentStyle lerp(FRawTileContentStyle other, double t) => .new(
prefixIconStyle: .lerpIconThemeData(prefixIconStyle, other.prefixIconStyle, t),
childTextStyle: .lerpTextStyle(childTextStyle, other.childTextStyle, t),
padding: .lerp(padding, other.padding, t) ?? padding,
prefixIconSpacing: lerpDouble(prefixIconSpacing, other.prefixIconSpacing, t) ?? prefixIconSpacing,
);