lerp static method
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,
)!,
);
}