setBottomSliderHeight method

Future<void> setBottomSliderHeight(
  1. double heightPercentage
)

Implementation

Future<void> setBottomSliderHeight(double heightPercentage) async {
  await animateToHeight(heightPercentage);
  log('Bottom slider height animated to: ${(heightPercentage * 100).toStringAsFixed(0)}%',
      name: 'SliderController');
}