copyWith method

Implementation

TheMoviePersonCredit copyWith({
  List<TheMoviePersonCast>? cast,
  List<TheMoviePersonCrew>? crew,
  int? id,
}) =>
    TheMoviePersonCredit(
      cast: cast ?? this.cast,
      crew: crew ?? this.crew,
      id: id ?? this.id,
    );