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