AtomicCustomSheetBody constructor

const AtomicCustomSheetBody({
  1. Key? key,
  2. Widget? child,
  3. Color? backgroundColor,
  4. BorderRadius? borderRadius,
  5. EdgeInsetsGeometry? padding,
  6. double? minHeight,
  7. double? maxHeight,
  8. bool showDragIndicator = true,
  9. Color? dragIndicatorColor,
  10. bool scrollable = true,
})

Implementation

const AtomicCustomSheetBody({
  super.key,
  this.child,
  this.backgroundColor,
  this.borderRadius,
  this.padding,
  this.minHeight,
  this.maxHeight,
  this.showDragIndicator = true,
  this.dragIndicatorColor,
  this.scrollable = true,
});