startBarcodeScanner static method

Starts the RTU barcode scanner UI with the given config.

The result is returned as a BarcodeScannerUiResult wrapped in ResultWrapper.

Implementation

static Future<ResultWrapper<BarcodeScannerUiResult>> startBarcodeScanner(
  BarcodeScannerScreenConfiguration config,
) async {
  return await SharedCalls.startBarcodeScanner(
      ScanbotBarcodeSdk.channel, config);
}