copyWith method
Implementation
TorrentRenamePathArgs copyWith({
TorrentId? id,
String? oldPath,
String? newName,
}) {
return TorrentRenamePathArgs(
id: id ?? this.id,
oldPath: oldPath ?? this.oldPath,
newName: newName ?? this.newName,
);
}