NUIPushInboxMessage constructor

NUIPushInboxMessage({
  1. required String notificationId,
  2. required String notificationDesc,
  3. required String notificationTitle,
  4. String? notificationType,
  5. String? image,
  6. required DateTime notificationDateTime,
  7. required bool isRead,
  8. String? itemId,
})

Implementation

NUIPushInboxMessage({
  required this.notificationId,
  required this.notificationDesc,
  required this.notificationTitle,
  this.notificationType,
  this.image,
  required this.notificationDateTime,
  required this.isRead,
  this.itemId});