lerp static method

Linearly interpolate between two tooltip themes.

All the properties must be non-null.

Implementation

static HelpButtonThemeData lerp(
  HelpButtonThemeData a,
  HelpButtonThemeData b,
  double t,
) {
  return HelpButtonThemeData(
    color: Color.lerp(a.color, b.color, t),
    disabledColor: Color.lerp(a.disabledColor, b.disabledColor, t),
  );
}