lerp static method

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

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

Implementation

static Largest lerp(Largest a, Largest? b, double t) {
  return Largest._(
    bold: LargestBold.lerp(a.bold, b?.bold, t),
    regular: LargestRegular.lerp(a.regular, b?.regular, t),
  );
}