HttpConnect.buffer constructor

HttpConnect.buffer(
  1. HttpConnect origin,
  2. List<int> buffer
)

Instantiates a connection by redirecting the output to the given buffer

  • (bytes).

Implementation

factory HttpConnect.buffer(HttpConnect origin, List<int> buffer)
=> new _BufferedConnect(origin, buffer);