copyWith method

TmmAddToArckipelResult copyWith({
  1. int? movieId,
  2. int? seen,
  3. int? collectionId,
})

Implementation

TmmAddToArckipelResult copyWith({
  int? movieId,
  int? seen,
  int? collectionId,
}) =>
    TmmAddToArckipelResult(
      movieId: movieId ?? this.movieId,
      seen: seen ?? this.seen,
      collectionId: collectionId ?? this.collectionId,
    );