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