BottomSheetStyle constructor

const BottomSheetStyle({
  1. double? maxHeightFraction,
  2. double? fixedHeight,
  3. Color? backgroundColor,
  4. Color? barrierColor,
  5. BorderRadius? borderRadius,
  6. bool showDragHandle = true,
  7. Color? dragHandleColor,
  8. double? dragHandleWidth,
  9. Duration? animationDuration,
  10. Curve? animationCurve,
})

Implementation

const BottomSheetStyle({
  this.maxHeightFraction,
  this.fixedHeight,
  this.backgroundColor,
  this.barrierColor,
  this.borderRadius,
  this.showDragHandle = true,
  this.dragHandleColor,
  this.dragHandleWidth,
  this.animationDuration,
  this.animationCurve,
});