ArcaneDialog constructor

const ArcaneDialog({
  1. String? title,
  2. required Component child,
  3. List<Component>? actions,
  4. bool showCloseButton = true,
  5. void onClose()?,
  6. double maxWidth = 500,
  7. bool barrierDismissible = true,
  8. Key? key,
})

Implementation

const ArcaneDialog({
  this.title,
  required this.child,
  this.actions,
  this.showCloseButton = true,
  this.onClose,
  this.maxWidth = 500,
  this.barrierDismissible = true,
  super.key,
});