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