NotificationDTO constructor

NotificationDTO({
  1. String? id,
  2. String? createdAt,
  3. String? updatedAt,
  4. bool? isActive,
  5. bool? isDeleted,
  6. String? title,
  7. String? description,
  8. String? photoUrl,
  9. String? oneSignalId,
  10. ProfileDTO? user,
  11. List<ProductDTO>? products,
  12. List<CategoryDTO>? categories,
  13. List<CampaignDTO>? campaigns,
})

Implementation

NotificationDTO({
  super.id,
  super.createdAt,
  super.updatedAt,
  super.isActive,
  super.isDeleted,
  this.title,
  this.description,
  this.photoUrl,
  this.oneSignalId,
  this.user,
  this.products,
  this.categories,
  this.campaigns,
});