AlertDialogProps constructor
const
AlertDialogProps({
- required String title,
- required String message,
- String buttonText = 'OK',
- void onDismiss()?,
- Widget? icon,
- ArcaneStyleData? styles,
- ArcaneDecoration? decoration,
Implementation
const AlertDialogProps({
required this.title,
required this.message,
this.buttonText = 'OK',
this.onDismiss,
this.icon,
this.styles,
this.decoration,
});