downloadObservation method

Future<Uint8List> downloadObservation(
  1. String blobPath
)

Implementation

Future<Uint8List> downloadObservation(String blobPath) async {
  return await env.client.storage
      .from(_observationsBucketName)
      .download(blobPath);
}