stopSoftScan method

Future<void> stopSoftScan()

Stops an ongoing software scan session.

Call this after startSoftScan when you want to stop scanning.

Implementation

Future<void> stopSoftScan() {
  return sendCommand(
    command: DataWedgeApi.softScanTrigger,
    value: DataWedgeSoftScanAction.stop,
    commandTag: 'SOFT_SCAN_STOP',
  );
}