cM function

  1. @protected
Uint8List cM(
  1. int msgLen,
  2. int msgID,
  3. String payload
)

Returns the whole RCON message as a Uint8List. Requires the message length, message ID, and the payload.

Implementation

@protected
Uint8List cM(int msgLen, int msgID, String payload) {
  return _createMessage(msgLen, msgID, payload);
}