fetchDownloadURI method

Future<Uri> fetchDownloadURI()

Get the URI to download the file.

ファイルをダウンロードするためのURIを取得します。

Implementation

Future<Uri> fetchDownloadURI() async {
  final path = await storageQuery.adapter.fetchDownloadURI(
    storageQuery.relativeRemotePath.trimQuery().trimStringRight("/"),
  );
  notifyListeners();
  return path;
}