lerp static method

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

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

Implementation

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