InfoBanner constructor
const
InfoBanner({
- required String message,
- String? title,
- BannerVariant variant = BannerVariant.info,
- bool showIcon = true,
- VoidCallback? onDismiss,
- Widget? action,
- 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,
});