setMinLength1Digit method

Future<CommandResponse> setMinLength1Digit(
  1. String deviceId
)

Sets the minimum length for Code 39 symbology to 1 digit.

deviceId - The identifier of the target device.

Returns a CommandResponse indicating the success or failure of the command.

Implementation

Future<CommandResponse> setMinLength1Digit(String deviceId) async {
  return sendCommand(deviceId, code39MinLength1Digit);
}