copyWith method

  1. @override
UpdateFileRemovedFromDownloads copyWith({
  1. int? fileId,
  2. DownloadedFileCounts? counts,
  3. dynamic extra,
  4. 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,
    );