lerp static method

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

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

Implementation

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