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