RawResponse constructor

RawResponse(
  1. Uint8List _data, {
  2. int statusCode = 200,
  3. String contentType = Mime.octetStream,
})

Implementation

RawResponse(this._data,
    {int statusCode = 200, this.contentType = Mime.octetStream})
    : super(statusCode);