VBottomSheetContent constructor

const VBottomSheetContent({
  1. Key? key,
  2. required Widget child,
  3. double? height,
  4. bool showDragHandle = true,
  5. double? borderRadius,
  6. Color? backgroundColor,
  7. EdgeInsetsGeometry? padding,
  8. ScrollController? scrollController,
})

Implementation

const VBottomSheetContent({
  super.key,
  required this.child,
  this.height,
  this.showDragHandle = true,
  this.borderRadius,
  this.backgroundColor,
  this.padding,
  this.scrollController,
});