stopScanning method

Future<void> stopScanning()

Stop the video streaming barcode decoding thread.

You can use stopScanning like this:

late final DynamsoftBarcodeReader _barcodeReader;
_barcodeReader = await DynamsoftBarcodeReader.createInstance();
await _barcodeReader.stopScanning();

Implementation

Future<void> stopScanning() {
  return _barcodeReaderCaller.stopScanning();
}