ArcaneAlertDialog constructor

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

Implementation

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