createDocumentFromImageFileUris method
Future<Result<DocumentData> >
createDocumentFromImageFileUris({
- List<
String> ? images, - CreateDocumentOptions? options,
Creates a document from the provided images with the specified options.
images - The images to be used for document creation.
options - The options to be used for document creation.
Returns a Future that completes with created document.
Implementation
Future<Result<DocumentData>> createDocumentFromImageFileUris(
{List<String>? images, CreateDocumentOptions? options}) {
return ScanbotDocumentImpl.createDocumentFromImageFileUris(images, options);
}