inputStream property

Stream<List<int>> get inputStream

Provides a stream of data as List

Implementation

Stream<List<int>> get inputStream => sslEnabled
    ? _secureResponseController.stream
    : _responseController.stream;