scanBarcode static method

Future<ScanResult> scanBarcode(
  1. dynamic input, {
  2. ScanbotBarcodeScannerConfig config = const ScanbotBarcodeScannerConfig(),
})

Single or batch barcode scanner execution (scanbot_sdk barcode scanner).

Implementation

static Future<ScanResult> scanBarcode(
  dynamic input, {
  ScanbotBarcodeScannerConfig config = const ScanbotBarcodeScannerConfig(),
}) async {
  return await ScannerPro.scanBarcode(input);
}