lerp static method

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

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

Implementation

static Normal lerp(Normal a, Normal? b, double t) {
  return Normal._(
    bold: NormalBold.lerp(a.bold, b?.bold, t),
    regular: NormalRegular.lerp(a.regular, b?.regular, t),
  );
}