responseController property
StreamController<List<int> >
get
responseController
Getter for the StreamController that listens to the _socksSocket and broadcasts, or the _secureSocksSocket and broadcasts if SSL is enabled.
Implementation
StreamController<List<int>> get responseController =>
sslEnabled ? _secureResponseController : _responseController;