Barcode Batch

Defined in library scandit_datacapture_barcode_batch

BarcodeBatch
class BarcodeBatch : DataCaptureMode

Added in version 6.7.0

Data capture mode that implements MatrixScan (Barcode Batch).

Learn more on how to use Barcode Batch in our Get Started guide.

BarcodeBatch.forContext(context, settings)
BarcodeBatch.forContext(DataCaptureContext context,
        BarcodeBatchSettings settings)

Added in version 7.0.0

Constructs a new Barcode Batch mode with the provided context and settings.

isEnabled
bool isEnabled

Added in version 7.0.0

Implemented from DataCaptureMode. See DataCaptureMode.isEnabled.

applySettings(settings)
Future<void> applySettings(BarcodeBatchSettings settings)

Added in version 7.0.0

Asynchronously applies the new settings to the barcode scanner. If the scanner is currently running, the task will complete when the next frame is processed, and will use the new settings for that frame. If the scanner is currently not running, the task will complete as soon as the settings have been stored and won’t wait until the next frame is going to be processed.

Same as applySettings() with the second argument set to null.

addListener(listener)
void addListener(BarcodeBatchListener listener)

Added in version 7.0.0

Adds the listener to observe this barcode capture instance.

In case the same listener is already observing this instance, calling this method will not add the listener again.

removeListener(listener)
void removeListener(BarcodeBatchListener listener)

Added in version 7.0.0

Removes a previously added listener from this Barcode Batch instance.

In case the listener is not currently observing this instance, calling this method has no effect.

recommendedCameraSettings
static CameraSettings get recommendedCameraSettings

Added in version 7.0.0

Returns the recommended camera settings for use with Barcode Batch.

context
DataCaptureContext? get context

Added in version 7.0.0

Implemented from DataCaptureMode. See DataCaptureMode.context.