DAlertDialog constructor

const DAlertDialog({
  1. Key? key,
  2. Color? backgroundColor,
  3. DialogStyle? dialogStyle,
  4. Widget? title,
  5. Widget? content,
  6. List<Widget>? actions,
  7. double? blur,
  8. bool? dismissable,
  9. void onDismiss()?,
})

Implementation

const DAlertDialog({
  super.key,
  this.backgroundColor,
  this.dialogStyle,
  this.title,
  this.content,
  this.actions,
  super.blur,
  super.dismissable,
  super.onDismiss,
});