startBarcodeScanner static method

  1. @Deprecated('Deprecated approach. Use scanbot_barcode_sdk_v2 instead of scanbot_barcode_sdk')
Future<BarcodeScanningResult> startBarcodeScanner(
  1. BarcodeScannerConfiguration config
)

Starts the Ready-to-Use Barcode Scanner UI as full-screen modal UI dialog. The Barcode Scanner is able to recognize 1D- and 2D-barcodes (QR codes, etc).

Implementation

@Deprecated(
    'Deprecated approach. Use scanbot_barcode_sdk_v2 instead of scanbot_barcode_sdk')

/// Starts the Ready-to-Use Barcode Scanner UI as full-screen modal UI dialog.
/// The Barcode Scanner is able to recognize 1D- and 2D-barcodes (QR codes, etc).
static Future<BarcodeScanningResult> startBarcodeScanner(
    BarcodeScannerConfiguration config) async {
  return SharedCalls.startBarcodeScannerInternal(_channel, config);
}