BannerWidget constructor
const
BannerWidget({
- Key? key,
- required BannerSeverity severity,
- required String message,
- String? title,
- bool isDismissible = false,
- VoidCallback? onDismiss,
- 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,
});