Review constructor

Review({
  1. String? name,
  2. String? relativePublishTimeDescription,
  3. LocalizedText? text,
  4. LocalizedText? originalText,
  5. int? rating,
  6. AuthorAttribution? authorAttribution,
  7. DateTime? publishTime,
  8. String? flagContentUri,
  9. String? googleMapsUri,
})

Implementation

Review({
  this.name,
  this.relativePublishTimeDescription,
  this.text,
  this.originalText,
  this.rating,
  this.authorAttribution,
  this.publishTime,
  this.flagContentUri,
  this.googleMapsUri,
});