lerp static method

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

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

Implementation

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