RatingDTO constructor

RatingDTO({
  1. String? id,
  2. String? createdAt,
  3. String? updatedAt,
  4. bool? isActive,
  5. bool? isDeleted,
  6. int? rate,
  7. String? comment,
  8. bool? isVerified,
  9. ProfileDTO? user,
  10. List<PhotoDTO>? photos,
})

Implementation

RatingDTO(
    {super.id,
    super.createdAt,
    super.updatedAt,
    super.isActive,
    super.isDeleted,
    this.rate,
    this.comment,
    this.isVerified,
    this.user,
    this.photos});