Review constructor

Review({
  1. ReviewLinks? links,
  2. DateTime? createdAt,
  3. String? id,
  4. String? reviewBody,
  5. int? reviewRating,
  6. String? type,
  7. DateTime? updatedAt,
})

Returns a new Review instance.

Implementation

Review({
  this.links,
  this.createdAt,
  this.id,
  this.reviewBody,
  this.reviewRating,
  this.type,
  this.updatedAt,
});