NotificationState constructor

NotificationState({
  1. String? message,
  2. String? title,
  3. required NotificationType type,
  4. bool hasNotification = false,
})

Implementation

NotificationState({
  this.message,
  this.title,
  required this.type,
  this.hasNotification = false,
});