Returns the response body as bytes (Uint8List) provided the network call was successful, else this will be null.
null
Uint8List get bodyBytes => base is http.Response ? (base as http.Response).bodyBytes : Uint8List(0);