*<Null safety>*
void sendMessage (Message response)
Sends the given message over the bound channel.
If the channel is not bound, the handles inside the message are closed and the message itself is discarded.
Implementation
void sendMessage(Message response) {
if (!isBound) {
response.closeHandles();
return;
}
_reader.channel?.write(response.data, response.handles);
}