getDownloadedFile static method
Gets the path of a downloaded file with the specified fileName.
Returns the file path or null if the file doesn't exist.
Implementation
static String? getDownloadedFile(String fileName) {
return _downloadedFiles[fileName];
}