ArcaneDrawer constructor

const ArcaneDrawer({
  1. required bool isOpen,
  2. required Widget child,
  3. VoidCallback? onClose,
  4. DrawerPosition position = DrawerPosition.right,
  5. DrawerSize size = DrawerSize.md,
  6. Widget? header,
  7. Widget? footer,
  8. bool showBackdrop = true,
  9. bool closeOnBackdropClick = true,
  10. bool showCloseButton = true,
  11. String? width,
  12. String? height,
  13. Key? key,
})

Implementation

const ArcaneDrawer({
  required this.isOpen,
  required this.child,
  this.onClose,
  this.position = DrawerPosition.right,
  this.size = DrawerSize.md,
  this.header,
  this.footer,
  this.showBackdrop = true,
  this.closeOnBackdropClick = true,
  this.showCloseButton = true,
  this.width,
  this.height,
  super.key,
});