lerp static method

Implementation

static BottomSheetThemeData lerp(
  BottomSheetThemeData? a,
  BottomSheetThemeData? b,
  double t,
) {
  return BottomSheetThemeData(
    backgroundColor: Color.lerp(a?.backgroundColor, b?.backgroundColor, t),
    handleColor: Color.lerp(a?.handleColor, b?.handleColor, t),
    elevation: lerpDouble(a?.elevation, b?.elevation, t),
    shape: ShapeBorder.lerp(a?.shape, b?.shape, t),
  );
}