createDocumentFromImageRefs method
Future<Result<DocumentData> >
createDocumentFromImageRefs({
- List<
ImageRef> ? 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>> createDocumentFromImageRefs(
{List<ImageRef>? images, CreateDocumentOptions? options}) {
return ScanbotDocumentImpl.createDocumentFromImageRefs(images, options);
}