NiceAlert constructor
- Key? key,
- required String message,
- String? title,
- NiceAlertSeverity severity = NiceAlertSeverity.info,
- IconData? icon,
- VoidCallback? onClose,
- Widget? action,
- bool showIcon = true,
Implementation
const NiceAlert({
super.key,
required this.message,
this.title,
this.severity = NiceAlertSeverity.info,
this.icon,
this.onClose,
this.action,
this.showIcon = true,
});