lerp static method

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

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

Implementation

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