delete method
Future<List<BlobDeleteResult> >
delete({
- required String sha256,
- List<
String> ? serverUrls, - AuthPolicy? auth,
deletes a file from the server(s)
if serverUrls is null, the userServerList is fetched from nostr.
auth says which identity the deletion may be attributed to, see
AuthPolicy.
Implementation
Future<List<BlobDeleteResult>> delete({
required String sha256,
List<String>? serverUrls,
AuthPolicy? auth,
}) {
return _blossom.deleteBlob(
sha256: sha256,
serverUrls: serverUrls,
auth: auth,
);
}