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