lerp static method

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

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

Implementation

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