TheMoviePerson constructor

TheMoviePerson({
  1. String? profilePath,
  2. bool? adult,
  3. int? id,
  4. List<TheMoviePersonKnownFor>? knownFor,
  5. String? name,
  6. num? popularity,
})

Implementation

TheMoviePerson(
    {this.profilePath,
    this.adult,
    this.id,
    this.knownFor,
    this.name,
    this.popularity});