ArcaneCallout.error constructor

const ArcaneCallout.error({
  1. String? title,
  2. String? content,
  3. Component? child,
  4. Component? icon,
  5. bool showIcon = true,
  6. bool dismissible = false,
  7. VoidCallback? onDismiss,
  8. Key? key,
})

Implementation

const ArcaneCallout.error({
  this.title,
  this.content,
  this.child,
  this.icon,
  this.showIcon = true,
  this.dismissible = false,
  this.onDismiss,
  super.key,
}) : variant = CalloutVariant.error;