lerp method
Linearly interpolate with another Spec object.
Implementation
@override
AspectRatioModifierSpec lerp(AspectRatioModifierSpec? other, double t) {
return AspectRatioModifierSpec(
lerpDouble(aspectRatio, other?.aspectRatio, t) ?? aspectRatio,
);
}