setCheckCD method

Future<CommandResponse> setCheckCD({
  1. required dynamic deviceId,
  2. required Code11CheckCDSettings setting,
})

Sets the check digit validation mode for Code 11 symbology.

deviceId - The identifier of the target device. setting - The Code11CheckCDSettings enum value representing the desired setting.

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

Implementation

Future<CommandResponse> setCheckCD(
    {required deviceId, required Code11CheckCDSettings setting}) async {
  return sendCommand(deviceId, _checkCDCommands[setting]!);
}