AlertBannerProps constructor

const AlertBannerProps({
  1. required String message,
  2. String? title,
  3. AlertBannerVariant variant = AlertBannerVariant.info,
  4. Widget? icon,
  5. Widget? action,
  6. bool dismissible = false,
  7. void onDismiss()?,
  8. bool filled = false,
})

Implementation

const AlertBannerProps({
  required this.message,
  this.title,
  this.variant = AlertBannerVariant.info,
  this.icon,
  this.action,
  this.dismissible = false,
  this.onDismiss,
  this.filled = false,
});