copyWith method
UpdateFileRemovedFromDownloads
copyWith({
- int? fileId,
- DownloadedFileCounts? counts,
- dynamic extra,
- int? clientId,
override
Implementation
@override
UpdateFileRemovedFromDownloads copyWith({
int? fileId,
DownloadedFileCounts? counts,
dynamic extra,
int? clientId,
}) =>
UpdateFileRemovedFromDownloads(
fileId: fileId ?? this.fileId,
counts: counts ?? this.counts,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);