copyWith method

RemoveFileFromDownloads copyWith({
  1. int? fileId,
  2. bool? deleteFromCache,
})

Implementation

RemoveFileFromDownloads copyWith({
  int? fileId,
  bool? deleteFromCache,
}) =>
    RemoveFileFromDownloads(
      fileId: fileId ?? this.fileId,
      deleteFromCache: deleteFromCache ?? this.deleteFromCache,
    );