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