copyWith method

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

Implementation

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