AlertDialogProps constructor

const AlertDialogProps({
  1. required String title,
  2. required String message,
  3. String buttonText = 'OK',
  4. void onDismiss()?,
  5. Widget? icon,
  6. ArcaneStyleData? styles,
  7. ArcaneDecoration? decoration,
})

Implementation

const AlertDialogProps({
  required this.title,
  required this.message,
  this.buttonText = 'OK',
  this.onDismiss,
  this.icon,
  this.styles,
  this.decoration,
});