getBlob method

Future<StreamedResponse> getBlob(
  1. String path
)

Get Blob.

Implementation

Future<http.StreamedResponse> getBlob(String path) async {
  var request = http.Request('GET', uri(path: path));
  _sign(request);
  return request.send();
}