setSymbology abstract method
- required String deviceId,
- required SymbologyType type,
- required bool enabled,
Toggles a specific symbology on the device based on the enabled
flag.
deviceId
is the ID of the device where the symbology should be enabled or disabled.
type
is the symbology to enable or disable.
enabled
is a boolean flag indicating whether to enable (true) or disable (false) the symbology.
Returns a CommandResponse indicating the success or failure of the operation.
Implementation
Future<CommandResponse> setSymbology({
required String deviceId,
required SymbologyType type,
required bool enabled,
});