getDownloadedFile static method

String? getDownloadedFile(
  1. String fileName
)

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];
}