lerp static method

Implementation

static AppKitCircularSliderThemeData lerp(AppKitCircularSliderThemeData a,
    AppKitCircularSliderThemeData b, double t) {
  return AppKitCircularSliderThemeData(
    backgroundColor: Color.lerp(a.backgroundColor, b.backgroundColor, t)!,
    thumbColor: Color.lerp(a.thumbColor, b.thumbColor, t)!,
    thumbColorUnfocused:
        Color.lerp(a.thumbColorUnfocused, b.thumbColorUnfocused, t)!,
  );
}