IOStreamedResponse constructor
IOStreamedResponse(})
Creates a new streaming response.
stream
should be a single-subscription stream.
If inner
is not provided, detachSocket will throw.
Implementation
IOStreamedResponse(Stream<List<int>> stream, int statusCode,
{int? contentLength,
BaseRequest? request,
Map<String, String> headers = const {},
bool isRedirect = false,
bool persistentConnection = true,
String? reasonPhrase,
HttpClientResponse? inner})
: _inner = inner,
super(stream, statusCode,
contentLength: contentLength,
request: request,
headers: headers,
isRedirect: isRedirect,
persistentConnection: persistentConnection,
reasonPhrase: reasonPhrase);