doGetMediaUri function

Future<Uri> doGetMediaUri(
  1. String mediaId, {
  2. dynamic mediaType,
})

Implementation

Future<Uri> doGetMediaUri(String mediaId, {mediaType}) async {
  var storageReference = _ref.child(getMediaRefUri(mediaId, mediaType));
  final url = await storageReference.getDownloadURL();
  return url;
}