AuiAlert.warning constructor

const AuiAlert.warning({
  1. Key? key,
  2. String? title,
  3. String? description,
  4. IconData? icon,
  5. VoidCallback? onDismiss,
  6. Widget? action,
  7. bool showIcon = true,
})

Creates a warning alert.

Implementation

const AuiAlert.warning({
  super.key,
  this.title,
  this.description,
  this.icon,
  this.onDismiss,
  this.action,
  this.showIcon = true,
}) : variant = AlertVariant.warning;