copyWith method

FoundFileDownloads copyWith({
  1. DownloadedFileCounts? totalCounts,
  2. List<FileDownload>? files,
  3. String? nextOffset,
  4. dynamic extra,
  5. 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,
    );