lerp method
Linearly interpolate between this and another FOtpFieldItemStyle using the given factor t.
Implementation
@useResult
FOtpFieldItemStyle lerp(FOtpFieldItemStyle other, double t) => .new(
decoration: .lerp(decoration, other.decoration, t) ?? decoration,
contentTextStyle: .lerp(contentTextStyle, other.contentTextStyle, t) ?? contentTextStyle,
);