lerp method
Linearly interpolate with another Spec object.
Implementation
@override
FlexibleModifierSpec lerp(FlexibleModifierSpec? other, double t) {
return FlexibleModifierSpec(
flex: lerpInt(flex, other?.flex, t),
fit: lerpSnap(fit, other?.fit, t),
);
}