CalloutProps constructor

const CalloutProps({
  1. String? title,
  2. String? content,
  3. Widget? child,
  4. CalloutVariant variant = CalloutVariant.info,
  5. Widget? icon,
  6. bool showIcon = true,
  7. bool dismissible = false,
  8. void onDismiss()?,
})

Implementation

const CalloutProps({
  this.title,
  this.content,
  this.child,
  this.variant = CalloutVariant.info,
  this.icon,
  this.showIcon = true,
  this.dismissible = false,
  this.onDismiss,
});