ProductReview constructor

const ProductReview({
  1. required String author,
  2. required double ratingValue,
  3. String? body,
  4. String? datePublished,
  5. String? reviewTitle,
})

Implementation

const ProductReview({
  required this.author,
  required this.ratingValue,
  this.body,
  this.datePublished,
  this.reviewTitle,
});