sendBytes method

void sendBytes(
  1. List<int> bytes
)

Sends bytes to the peer.

Implementation

void sendBytes(List<int> bytes) => channel.sink.add(bytes);