show method

void show(
  1. int downloadId
)

Show the downloaded file in its folder in a file manager. |downloadId|: The identifier for the downloaded file.

Implementation

void show(int downloadId) {
  $js.chrome.downloads.show(downloadId);
}