setCheckCD abstract method

Future<CommandResponse> setCheckCD({
  1. required String deviceId,
  2. required bool enabled,
})

Sets the check digit validation for Code 93 symbology.

deviceId - The identifier of the target device. enabled - A boolean indicating whether to enable (true) or disable (false) the check digit validation.

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

Implementation

Future<CommandResponse> setCheckCD({
  required String deviceId,
  required bool enabled,
});