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