ProductReview2 constructor

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

Returns a new ProductReview2 instance.

Implementation

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