lerp method

Implementation

TermosSegmentedEffects lerp(TermosSegmentedEffects other, double t) {
  return TermosSegmentedEffects(
    glowColorMixWithWhite:
        lerpDouble(glowColorMixWithWhite, other.glowColorMixWithWhite, t)!,
    glowBaseOpacityLight: lerpDouble(glowBaseOpacityLight, other.glowBaseOpacityLight, t)!,
    glowBaseOpacityDark: lerpDouble(glowBaseOpacityDark, other.glowBaseOpacityDark, t)!,
  );
}