copyWith method

TheMoviePersonProfiles copyWith({
  1. double? aspectRatio,
  2. String? filePath,
  3. int? height,
  4. dynamic iso6391,
  5. double? voteAverage,
  6. int? voteCount,
  7. int? width,
})

Implementation

TheMoviePersonProfiles copyWith({
  double? aspectRatio,
  String? filePath,
  int? height,
  dynamic iso6391,
  double? voteAverage,
  int? voteCount,
  int? width,
}) =>
    TheMoviePersonProfiles(
      aspectRatio: aspectRatio ?? this.aspectRatio,
      filePath: filePath ?? this.filePath,
      height: height ?? this.height,
      iso6391: iso6391 ?? this.iso6391,
      voteAverage: voteAverage ?? this.voteAverage,
      voteCount: voteCount ?? this.voteCount,
      width: width ?? this.width,
    );