lerp method
Linearly interpolate between this and another FLabelStyles using the given factor t
.
Implementation
@useResult
FLabelStyles lerp(FLabelStyles other, double t) => FLabelStyles(
horizontalStyle: horizontalStyle.lerp(other.horizontalStyle, t),
verticalStyle: verticalStyle.lerp(other.verticalStyle, t),
);