fetchPublicURI method
Please make sure that you can get a publicly available URL. Use this URI when you want to retrieve images, etc. using Image.network, etc.
公開可能なURLを取得できるようにしてください。画像等をImage.networkなどで取得したい場合このURIを利用します。
Implementation
@override
Future<Uri> fetchPublicURI(String remoteRelativePathOrId) async {
return Uri.parse(
"https://firebasestorage.googleapis.com/v0/b/$_storageBucket/o/${remoteRelativePathOrId.replaceAll("/", "%2F")}?alt=media",
);
}