sendClearText method
Process and send clear text data within the Strobe protocol.
Parameters:
meta: A boolean flag indicating whether metadata is included in the operation.cleartext: A List<int> containing the clear text data to be processed and sent.
Implementation
void sendClearText(bool meta, List<int> cleartext) {
operate(meta, StrobeOperation.sendClr, cleartext, 0, false);
}