NotificationCard constructor
const
NotificationCard({
- Key? key,
- required String title,
- required String message,
- String? timestamp,
- IconData? icon,
- bool unread = false,
- VoidCallback? onTap,
- VoidCallback? onDismiss,
Implementation
const NotificationCard({
super.key,
required this.title,
required this.message,
this.timestamp,
this.icon,
this.unread = false,
this.onTap,
this.onDismiss,
});