CustomBottomSheet constructor

const CustomBottomSheet({
  1. Key? key,
  2. String? title,
  3. required Widget child,
  4. bool showDragHandle = true,
  5. bool showCloseButton = false,
})

Implementation

const CustomBottomSheet({
  super.key,
  this.title,
  required this.child,
  this.showDragHandle = true,
  this.showCloseButton = false,
});