startScanWithPhoto method

Future<OcrTextRecognizerResult?> startScanWithPhoto()

Implementation

Future<OcrTextRecognizerResult?> startScanWithPhoto() async {
  return _startStaticScanProcess(
    await FilePicker.platform.pickFiles(
      type: FileType.image,
      allowCompression: false,
      allowMultiple: false,
    ),
  );
}