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