lerp static method

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

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

Implementation

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