TheMoviePersonDetail constructor

TheMoviePersonDetail({
  1. String? birthday,
  2. String? knownForDepartment,
  3. dynamic deathday,
  4. int? id,
  5. String? name,
  6. List<String>? alsoKnownAs,
  7. int? gender,
  8. String? biography,
  9. num? popularity,
  10. String? placeOfBirth,
  11. String? profilePath,
  12. bool? adult,
  13. String? imdbId,
  14. dynamic homepage,
})

Implementation

TheMoviePersonDetail(
    {this.birthday,
    this.knownForDepartment,
    this.deathday,
    this.id,
    this.name,
    this.alsoKnownAs,
    this.gender,
    this.biography,
    this.popularity,
    this.placeOfBirth,
    this.profilePath,
    this.adult,
    this.imdbId,
    this.homepage});