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