bodyBytes property

Uint8List bodyBytes

Returns the response body as bytes (Uint8List) provided the network call was successful, else this will be null.

Implementation

Uint8List get bodyBytes =>
    base is http.Response ? (base as http.Response).bodyBytes : Uint8List(0);