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