Review constructor

Review({
  1. String id = "",
  2. String text = "",
  3. int ratingValue = 0,
  4. int createdDate = 0,
  5. String reviewerProfileId = "",
  6. String reviewerName = "",
  7. String reviewerTitle = "",
  8. String profileImgUrl = "",
  9. bool recommend = true,
})

Implementation

Review({
  this.id = "",
  this.text = "",
  this.ratingValue = 0,
  this.createdDate = 0,
  this.reviewerProfileId = "",
  this.reviewerName = "",
  this.reviewerTitle = "",
  this.profileImgUrl = "",
  this.recommend = true,
});