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