Review constructor

Review({
  1. String? authorName,
  2. String? authorUrl,
  3. String? language,
  4. String? originalLanguage,
  5. String? profilePhotoUrl,
  6. int? rating,
  7. String? relativeTimeDescription,
  8. String? text,
  9. int? time,
  10. bool? translated,
})

Implementation

Review({
  this.authorName,
  this.authorUrl,
  this.language,
  this.originalLanguage,
  this.profilePhotoUrl,
  this.rating,
  this.relativeTimeDescription,
  this.text,
  this.time,
  this.translated,
});