NotificationState constructor
NotificationState({
- String? message,
- String? title,
- required NotificationType type,
- bool hasNotification = false,
Implementation
NotificationState({
this.message,
this.title,
required this.type,
this.hasNotification = false,
});