AuiAlert constructor
const
AuiAlert({
- Key? key,
- AlertVariant variant = AlertVariant.info,
- String? title,
- String? description,
- IconData? icon,
- VoidCallback? onDismiss,
- Widget? action,
- bool showIcon = true,
Creates an AuiAlert with full parameter control.
Implementation
const AuiAlert({
super.key,
this.variant = AlertVariant.info,
this.title,
this.description,
this.icon,
this.onDismiss,
this.action,
this.showIcon = true,
});