clearAllPrefixes method

Future<CommandResponse> clearAllPrefixes(
  1. String deviceId
)

Clears the prefix formatting on the device.

deviceId - The identifier of the target device.

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

Implementation

Future<CommandResponse> clearAllPrefixes(String deviceId) async {
  return sendCommand(deviceId, clearPrefixes);
}