loadDocument method

Future<Result<DocumentData>> loadDocument(
  1. String documentUuid
)

Loads the document with the specified Uuid.

documentUuid - The Uuid of the document.

Returns a Future that completes with loaded document.

Implementation

Future<Result<DocumentData>> loadDocument(String documentUuid) {
  return ScanbotDocumentImpl.loadDocument(documentUuid);
}