copyWith method

UpdateFileRemovedFromDownloads copyWith({
  1. int? fileId,
  2. DownloadedFileCounts? counts,
})

Implementation

UpdateFileRemovedFromDownloads copyWith({
  int? fileId,
  DownloadedFileCounts? counts,
}) => UpdateFileRemovedFromDownloads(
  fileId: fileId ?? this.fileId,
  counts: counts ?? this.counts,
);