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