setMinLength3Digits method

Future<CommandResponse> setMinLength3Digits(
  1. String deviceId
)

Sets the minimum length for Code 39 symbology to 3 digits.

deviceId - The identifier of the target device.

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

Implementation

Future<CommandResponse> setMinLength3Digits(String deviceId) async {
  return sendCommand(deviceId, code39MinLength3Digits);
}