bodyStream method

Stream<Uint8List> bodyStream()

Get the body of the request as Stream of Uint8List.

Preferred to use if the content is to long like file or something.

Implementation

Stream<Uint8List> bodyStream() {
  return _httpRequest.asBroadcastStream();
}