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