fetchDownloadURI method
Please make sure you can get the URI to download the file.
ファイルをダウンロードするためのURIを取得できるようにしてください。
Implementation
@override
Future<Uri> fetchDownloadURI(String remoteRelativePathOrId) async {
await FirebaseCore.initialize(options: options);
return Uri.parse(await reference(remoteRelativePathOrId).getDownloadURL());
}