Notifications constructor

Notifications({
  1. String? notificationId,
  2. NotificationType? notificationType,
  3. bool? isRead,
  4. String? notificationDate,
  5. String? notificationTitle,
  6. String? notificationImage,
})

Implementation

Notifications({
  this.notificationId,
  this.notificationType,
  this.isRead,
  this.notificationDate,
  this.notificationTitle,
  this.notificationImage,
});