bytes method
Sends binary data (convenience method).
Implementation
void bytes(
List<int> bytes, {
String contentType = 'application/octet-stream',
}) {
_body.sendBytes(bytes, contentType: contentType);
_sent = true;
}
Sends binary data (convenience method).
void bytes(
List<int> bytes, {
String contentType = 'application/octet-stream',
}) {
_body.sendBytes(bytes, contentType: contentType);
_sent = true;
}