copyWith method

TorrentSetLocationArgs copyWith({
  1. TorrentIds<TorrentId>? ids,
  2. String? location,
  3. bool? move,
})

Implementation

TorrentSetLocationArgs copyWith({
  TorrentIds? ids,
  String? location,
  bool? move,
}) {
  return TorrentSetLocationArgs(
    ids: ids ?? this.ids,
    location: location ?? this.location,
    move: move ?? this.move,
  );
}