ArcaneActionSheet constructor

const ArcaneActionSheet({
  1. required bool isOpen,
  2. required List<ActionSheetItem> actions,
  3. VoidCallback? onClose,
  4. String? title,
  5. String? message,
  6. bool showCancel = true,
  7. String cancelLabel = 'Cancel',
  8. Key? key,
})

Implementation

const ArcaneActionSheet({
  required this.isOpen,
  required this.actions,
  this.onClose,
  this.title,
  this.message,
  this.showCancel = true,
  this.cancelLabel = 'Cancel',
  super.key,
});