BarBottomSheet constructor

const BarBottomSheet({
  1. Key? key,
  2. required Widget child,
  3. Widget? control,
  4. Clip? clipBehavior,
  5. ShapeBorder? shape,
  6. Color? backgroundColor,
  7. double? elevation,
  8. SystemUiOverlayStyle? overlayStyle,
})

Implementation

const BarBottomSheet({
  Key? key,
  required this.child,
  this.control,
  this.clipBehavior,
  this.shape,
  this.backgroundColor,
  this.elevation,
  this.overlayStyle,
}) : super(key: key);