BannerWidget constructor

const BannerWidget({
  1. Key? key,
  2. required BannerSeverity severity,
  3. required String message,
  4. String? title,
  5. bool isDismissible = false,
  6. VoidCallback? onDismiss,
  7. IconData? icon,
})

Creates a banner.

Implementation

const BannerWidget({
  super.key,
  required this.severity,
  required this.message,
  this.title,
  this.isDismissible = false,
  this.onDismiss,
  this.icon,
});