BaseBottomSheet constructor

const BaseBottomSheet({
  1. Key? key,
  2. required Widget child,
  3. double minHeight = 0.5,
  4. double maxHeight = 0.5,
  5. Color? maskColor,
  6. bool isDismissible = true,
  7. bool enableDrag = true,
  8. VoidCallback? onDismiss,
})

Implementation

const BaseBottomSheet({
  super.key,
  required this.child,
  this.minHeight = 0.5,
  this.maxHeight = 0.5,
  this.maskColor,
  this.isDismissible = true,
  this.enableDrag = true,
  this.onDismiss,
});