InfoBanner constructor

const InfoBanner({
  1. required String message,
  2. String? title,
  3. BannerVariant variant = BannerVariant.info,
  4. bool showIcon = true,
  5. VoidCallback? onDismiss,
  6. Widget? action,
  7. Key? key,
})

Creates an InfoBanner.

Implementation

const InfoBanner({
  required this.message,
  this.title,
  this.variant = BannerVariant.info,
  this.showIcon = true,
  this.onDismiss,
  this.action,
  super.key,
});