scanDocument method

Future<List<String>> scanDocument(
  1. int sourceIndex
)

Initiates a document scanning operation from a specified scanner.

sourceIndex - The index of the scanner in the list of available data sources.

Returns a Future<List<String>> containing the paths of saved images.

Implementation

Future<List<String>> scanDocument(int sourceIndex) {
  throw UnimplementedError('init() has not been implemented.');
}