BlogDTO constructor

BlogDTO({
  1. String? id,
  2. String? createdAt,
  3. String? updatedAt,
  4. bool? isActive,
  5. bool? isDeleted,
  6. String? title,
  7. String? content,
  8. List<PhotoDTO>? photos,
  9. List<TagDTO>? tags,
})

Implementation

BlogDTO({
  super.id,
  super.createdAt,
  super.updatedAt,
  super.isActive,
  super.isDeleted,
  this.title,
  this.content,
  this.photos,
  this.tags,
});