TheMovieReview constructor

TheMovieReview({
  1. String? author,
  2. AuthorDetails? authorDetails,
  3. String? content,
  4. String? createdAt,
  5. String? id,
  6. String? updatedAt,
  7. String? url,
})

Implementation

TheMovieReview(
    {this.author,
    this.authorDetails,
    this.content,
    this.createdAt,
    this.id,
    this.updatedAt,
    this.url});