lerp static method

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

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

Implementation

static GiantBold lerp(GiantBold a, GiantBold? b, double t) {
  return GiantBold._(
    currencyPrimary: TextStyle.lerp(
      a.currencyPrimary,
      b?.currencyPrimary,
      t,
    )!,
  );
}