bytes method

void bytes(
  1. List<int> data, {
  2. String contentType = 'application/octet-stream',
})

Raw bytes with an explicit contentType.

Implementation

void bytes(
  List<int> data, {
  String contentType = 'application/octet-stream',
}) {
  _headers['content-type'] = contentType;
  _body = data;
}