setConcatenation abstract method

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

Sets the concatenation mode for Code 128 symbology.

deviceId is the identifier of the device. enabled is a boolean indicating whether to enable (true) or disable (false) concatenation.

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

Implementation

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