lerp method
Implementation
TermosButtonEffects lerp(TermosButtonEffects other, double t) {
return TermosButtonEffects(
cardBlendLight: lerpDouble(cardBlendLight, other.cardBlendLight, t)!,
cardBlendDark: lerpDouble(cardBlendDark, other.cardBlendDark, t)!,
borderHoverMix: lerpDouble(borderHoverMix, other.borderHoverMix, t)!,
borderPressedMix: lerpDouble(borderPressedMix, other.borderPressedMix, t)!,
borderHoveredMix: lerpDouble(borderHoveredMix, other.borderHoveredMix, t)!,
contentMutedAlpha: lerpDouble(contentMutedAlpha, other.contentMutedAlpha, t)!,
);
}