lerp method

Implementation

TermosTextStyles lerp(TermosTextStyles other, double t) {
  if (t < 0.5) return this;
  return other;
}