removeObservation method

Future<List<FileObject>> removeObservation(
  1. List<String> blobPaths
)

Implementation

Future<List<FileObject>> removeObservation(List<String> blobPaths) async {
  return await env.client.storage
      .from(_observationsBucketName)
      .remove(blobPaths);
}