deleteDocument method

Future<Result<void>> deleteDocument(
  1. String documentUuid
)

Deletes the document with the specified Uuid.

documentUuid - The Uuid of the document to be deleted.

Implementation

Future<Result<void>> deleteDocument(String documentUuid) {
  return ScanbotDocumentImpl.deleteDocument(documentUuid);
}