sendRawXML method

void sendRawXML(
  1. XMLNode node
)

Sends an XMLNode without any further processing to the server.

Implementation

void sendRawXML(XMLNode node) {
  final string = node.toXml();
  _log.finest('==> $string');
  _socket.write(string);
}