bodyBytes property

Uint8List? bodyBytes

Gets this request's body as bytes (encoded version of body).

Implementation

Uint8List? get bodyBytes;
void bodyBytes=(List<int>? bytes)

Sets this request's body from bytes (encoded version of body).

Depending on the platform, this may be decoded to text prior to sending. Be sure to set encoding if this request body should be decoded with something other than the default utf-8.

Implementation

set bodyBytes(List<int>? bytes);