copyWith method
FoundFileDownloads
copyWith({
- DownloadedFileCounts? totalCounts,
- List<
FileDownload> ? files, - String? nextOffset,
- dynamic extra,
- int? clientId,
Implementation
FoundFileDownloads copyWith({
DownloadedFileCounts? totalCounts,
List<FileDownload>? files,
String? nextOffset,
dynamic extra,
int? clientId,
}) =>
FoundFileDownloads(
totalCounts: totalCounts ?? this.totalCounts,
files: files ?? this.files,
nextOffset: nextOffset ?? this.nextOffset,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);