lerp static method

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

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

Implementation

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