deliver method

void deliver(
  1. List<int> bytes
)

Pushes bytes to the connection's input stream as if received.

Implementation

void deliver(List<int> bytes) {
  if (_closed) return;
  _incoming.add(Uint8List.fromList(bytes));
}