ArcaneDialog constructor

const ArcaneDialog({
  1. Key? key,
  2. double padding = 24,
  3. Widget? leading,
  4. Widget? title,
  5. Widget? content,
  6. List<Widget>? actions,
  7. Widget? trailing,
  8. double? surfaceBlur,
  9. double? surfaceOpacity,
  10. Color? barrierColor,
})

Implementation

const ArcaneDialog({
  super.key,
  this.padding = 24,
  this.leading,
  this.title,
  this.content,
  this.actions,
  this.trailing,
  this.surfaceBlur,
  this.surfaceOpacity,
  this.barrierColor,
});