M
PlatformException(download_error, Object does not exist at location., null)
Future<dynamic> _loadImage(String image) async {
try {
final StorageReference result = await FirebaseStorage.instance
.ref()
.child("image.jpg")
.getDownloadURL();
return result;
}
catch(e) {
print(e);
return null;
}
}