ArcaneAlert.info constructor

const ArcaneAlert.info({
  1. String? title,
  2. String? message,
  3. Widget? child,
  4. AlertStyle style = AlertStyle.subtle,
  5. Widget? icon,
  6. bool showIcon = true,
  7. bool dismissible = false,
  8. void onDismiss()?,
  9. Widget? action,
  10. Key? key,
})

Implementation

const ArcaneAlert.info({
  this.title,
  this.message,
  this.child,
  this.style = AlertStyle.subtle,
  this.icon,
  this.showIcon = true,
  this.dismissible = false,
  this.onDismiss,
  this.action,
  super.key,
}) : color = ColorVariant.info;