DrawerWrapper constructor

const DrawerWrapper({
  1. Key? key,
  2. required OverlayPosition position,
  3. required Widget child,
  4. bool expands = false,
  5. bool draggable = true,
  6. Size extraSize = Size.zero,
  7. required Size size,
  8. bool showDragHandle = true,
  9. BorderRadiusGeometry? borderRadius,
  10. Size? dragHandleSize,
  11. EdgeInsets padding = EdgeInsets.zero,
  12. double? surfaceOpacity,
  13. double? surfaceBlur,
  14. Color? barrierColor,
  15. double? gapBeforeDragger,
  16. double? gapAfterDragger,
  17. required int stackIndex,
})

Implementation

const DrawerWrapper({
  super.key,
  required this.position,
  required this.child,
  this.expands = false,
  this.draggable = true,
  this.extraSize = Size.zero,
  required this.size,
  this.showDragHandle = true,
  this.borderRadius,
  this.dragHandleSize,
  this.padding = EdgeInsets.zero,
  this.surfaceOpacity,
  this.surfaceBlur,
  this.barrierColor,
  this.gapBeforeDragger,
  this.gapAfterDragger,
  required this.stackIndex,
});