ArsAlertDialog constructor

const ArsAlertDialog({
  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. Function? onDismiss,
})

Implementation

const ArsAlertDialog({
  Key? key,
  this.backgroundColor,
  this.dialogStyle,
  this.title,
  this.content,
  this.actions,
  this.blur,
  this.dismissable,
  this.onDismiss,
}) : super(key: key);