setISMNTranslationMode method

Future<CommandResponse> setISMNTranslationMode({
  1. required dynamic deviceId,
  2. required TranslationMode mode,
})

Sets the translation mode for ISMN in EAN-13 symbology.

deviceId - The identifier of the target device. mode - The desired ISMN translation mode.

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

Implementation

Future<CommandResponse> setISMNTranslationMode(
    {required deviceId, required TranslationMode mode}) async {
  return sendCommand(deviceId, _ismnTranslationCommands[mode]!);
}