Review constructor

Review({
  1. ReviewAuthor? author,
  2. String? content,
  3. String? date,
  4. String? fullTextUrl,
  5. String? kind,
  6. String? rating,
  7. ReviewSource? source,
  8. String? title,
  9. String? type,
  10. String? volumeId,
})

Implementation

Review({
  this.author,
  this.content,
  this.date,
  this.fullTextUrl,
  this.kind,
  this.rating,
  this.source,
  this.title,
  this.type,
  this.volumeId,
});