How to get full downloadUrl from UploadTaskSnapshot in Flutter?

前端 未结 4 586
感情败类
感情败类 2020-11-29 11:59

I correctly receive UploadTaskSnapshot, and the field downloadUrl contains an instance of Uri that parses download link of uploaded file.

H

4条回答
  •  北海茫月
    2020-11-29 12:59

    @DomingoMG it looks like with the latest release they want:

    String location = await ref.getDownloadURL();
    

    See https://pub.dartlang.org/packages/firebase_storage#-example-tab-

提交回复
热议问题