ProductReview constructor

ProductReview(
  1. {int? id,
  2. String? dateCreated,
  3. String? dateCreatedGmt,
  4. int? productId,
  5. String? status,
  6. String? reviewer,
  7. String? reviewerEmail,
  8. String? review,
  9. int? rating,
  10. bool? verified,
  11. Map<String, dynamic>? reviewerAvatarUrls,
  12. Links? links}
)

Implementation

ProductReview(
    {this.id,
    this.dateCreated,
    this.dateCreatedGmt,
    this.productId,
    this.status,
    this.reviewer,
    this.reviewerEmail,
    this.review,
    this.rating,
    this.verified,
    this.reviewerAvatarUrls,
    this.links});