copyWith method
Implementation
UpdateFileAddedToDownloads copyWith({
FileDownload? fileDownload,
DownloadedFileCounts? counts,
}) => UpdateFileAddedToDownloads(
fileDownload: fileDownload ?? this.fileDownload,
counts: counts ?? this.counts,
);