send method
Sends data to the peer via the multiplexer.
Implementation
void send(Uint8List data) {
if (_closing) throw StateError('Socket is closing');
multiplexer.send(data, remoteAddress, remotePort);
}
Sends data to the peer via the multiplexer.
void send(Uint8List data) {
if (_closing) throw StateError('Socket is closing');
multiplexer.send(data, remoteAddress, remotePort);
}