ArcaneDrawer.right constructor

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

Implementation

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