lerp static method

LargerRegular lerp(
  1. LargerRegular a,
  2. LargerRegular? b,
  3. double t
)

Linearly interpolates the provided objects based on the given t value.

Implementation

static LargerRegular lerp(LargerRegular a, LargerRegular? b, double t) {
  return LargerRegular._(
    onBackground: TextStyle.lerp(a.onBackground, b?.onBackground, t)!,
    secondary: TextStyle.lerp(a.secondary, b?.secondary, t)!,
  );
}