lerp static method
- GiantRegular a,
- GiantRegular? b,
- double t
Linearly interpolates the provided objects based on the given t value.
Implementation
static GiantRegular lerp(GiantRegular a, GiantRegular? b, double t) {
return GiantRegular._(
onBackground: TextStyle.lerp(a.onBackground, b?.onBackground, t)!,
);
}