BottomsheetTransitionBuilder constructor

const BottomsheetTransitionBuilder({
  1. Key? key,
  2. required Animation<double> animation,
  3. required Widget bottomsheet,
  4. BottomsheetAnimationDirection? startAnimation,
  5. BottomsheetAnimationDirection? endAnimation,
  6. bool hideLikeCircle = false,
})

Implementation

const BottomsheetTransitionBuilder({
  super.key,
  required this.animation,
  required this.bottomsheet,
  this.startAnimation,
  this.endAnimation,
  this.hideLikeCircle = false,
});