jsonBody property

Object? jsonBody

Returns the Json object by parsing the response body string. The response is json decoded synchronously.

For large response body, try jsonBodyAsync.

Implementation

Object? get jsonBody {
  return tryDecodeJson(body);
}