setSocketCamSymbologySelectorDisabled method

Future<int> setSocketCamSymbologySelectorDisabled({
  1. required bool disabled,
})

Enables or disables the SocketCam symbology selector overlay.

Sends a configuration string property to the root capture client.

Implementation

Future<int> setSocketCamSymbologySelectorDisabled({required bool disabled}) {
  final String value = disabled
      ? 'SocketCamSymbologySelector=disabled'
      : 'SocketCamSymbologySelector=enabled';
  return _set(
    CapturePropertyIds.configuration,
    CapturePropertyTypes.string,
    value,
  );
}