sendRaw method
void
sendRaw(
- dynamic data
Sends a raw data chunk to another side of channel.
This method is identical to sendSignal, except the fact that it does not do any preprocessing on data supplied and does not ensure that it can be sent through the channel.
More about limitations of the channel you can read at SendPort.send.
Implementation
void sendRaw(data) => _outPort.send(data);