sendRaw method
Sends raw over the socket.
Implementation
@override
void sendRaw(Uint8List raw) {
if (shutdownSend) return;
//client.debugPrint('DEBUG SSHTunneledSocketImpl.send: ${String.fromCharCodes(raw)}');
client.sendToChannel(channel, raw);
}