batchExportToPdf static method

Uint8List batchExportToPdf({
  1. required List<ScanResult> results,
  2. String title = 'ScannerPro Batch Export',
  3. bool enableCompression = true,
  4. String? watermarkText,
})

Batch exports multiple scan results into a single multi-page PDF byte buffer.

Implementation

static Uint8List batchExportToPdf({
  required List<ScanResult> results,
  String title = 'ScannerPro Batch Export',
  bool enableCompression = true,
  String? watermarkText,
}) {
  return PdfExporter.exportResultsToPdf(
    results: results,
    title: title,
    enableCompression: enableCompression,
    watermarkText: watermarkText,
  );
}