pdfScanResults property

  1. @override
Stream<Uint8List?> get pdfScanResults
override

This stream contains full stream of PDF data that came from the scan.

Implementation

@override
Stream<Uint8List?> get pdfScanResults {
  return _eventChannelPDF
      .receiveBroadcastStream()
      .map((event) => event as Uint8List);
}