getScannedDocumentAsImages method
Scans documents and returns raw image data from the platform.
imageFormat controls the output format on iOS (Android always returns JPEG).
If useAutomaticSinglePictureProcessing is true, native code uses
a fast single-picture flow and ignores page.
Returns null if the user cancelled.
Implementation
Future<dynamic> getScannedDocumentAsImages({
required int page,
required String imageFormat,
required double quality,
bool useAutomaticSinglePictureProcessing = false,
}) {
throw UnimplementedError(
'getScannedDocumentAsImages() has not been implemented.',
);
}