requestScanSwitchWithScanViewConfigContentString method

Future<void> requestScanSwitchWithScanViewConfigContentString(
  1. String scanViewConfigContentString
)

Switches to a new scan mode using a raw ScanViewConfig JSON string.

Implementation

Future<void> requestScanSwitchWithScanViewConfigContentString(
    String scanViewConfigContentString) async {
  await _wrapperSessionSetup;
  _channel.invokeMethod(
      _methodRequestScanSwitchWithScanViewConfigContentString,
      {_extraRequest: scanViewConfigContentString});
}