ProductReview1 constructor

ProductReview1({
  1. int? productId,
  2. ProductReview1StatusEnum? status,
  3. String? reviewer,
  4. String? reviewerEmail,
  5. String? review,
  6. int? rating,
})

Returns a new ProductReview1 instance.

Implementation

ProductReview1({
  this.productId,
  this.status,
  this.reviewer,
  this.reviewerEmail,
  this.review,
  this.rating,
});