Review constructor

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

Implementation

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