deleteDocument
The method deletes the document from the document wallet. Returns the result of deleting the document. Before deleting a document, stops all tasks associated with the documents being deleted.
Example:
val scope: CoroutineScope
val documentManager: DocumentManager
val documentItem: DocumentItem
scope.launch {
val isDeleted: Boolean = documentManager.deleteDocument(documentItem)
}Content copied to clipboard
Throws
Description