ArcaneSheet.end constructor

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

Implementation

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