NotificationEntity constructor

NotificationEntity({
  1. Object? timestamp,
  2. required String? appId,
  3. String? description,
  4. bool? read,
  5. String? reporterId,
  6. String? assigneeId,
  7. int? status,
})

Implementation

NotificationEntity({
  this.timestamp,
  required this.appId,
  this.description,
  this.read,
  this.reporterId,
  this.assigneeId,
  this.status,
});