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