uploadObservation method

Future<void> uploadObservation(
  1. String blobPath,
  2. File file
)

Implementation

Future<void> uploadObservation(String blobPath, File file) async {
  await env.client.storage
      .from(_observationsBucketName)
      .upload(blobPath, file);
}