copyWith method

RemoveAllFilesFromDownloads copyWith({
  1. bool? onlyActive,
  2. bool? onlyCompleted,
  3. bool? deleteFromCache,
})

Implementation

RemoveAllFilesFromDownloads copyWith({
  bool? onlyActive,
  bool? onlyCompleted,
  bool? deleteFromCache,
}) =>
    RemoveAllFilesFromDownloads(
      onlyActive: onlyActive ?? this.onlyActive,
      onlyCompleted: onlyCompleted ?? this.onlyCompleted,
      deleteFromCache: deleteFromCache ?? this.deleteFromCache,
    );