ArcaneSheet constructor

const ArcaneSheet({
  1. required bool isOpen,
  2. required Widget child,
  3. VoidCallback? onClose,
  4. SheetPosition position = SheetPosition.bottom,
  5. SheetSize size = SheetSize.auto,
  6. String? title,
  7. String? description,
  8. Widget? header,
  9. Widget? footer,
  10. bool showBackdrop = true,
  11. bool closeOnBackdropClick = true,
  12. bool showCloseButton = true,
  13. bool showDragHandle = true,
  14. String? maxWidth,
  15. Key? key,
})

Implementation

const ArcaneSheet({
  required this.isOpen,
  required this.child,
  this.onClose,
  this.position = SheetPosition.bottom,
  this.size = SheetSize.auto,
  this.title,
  this.description,
  this.header,
  this.footer,
  this.showBackdrop = true,
  this.closeOnBackdropClick = true,
  this.showCloseButton = true,
  this.showDragHandle = true,
  this.maxWidth,
  super.key,
});