jsonBody property
dynamic
get
jsonBody
JSON decoded body of the request, as-is.
Returns a dynamic object that might be a Map<String, dynamic> or
List<Map<String, dynamic>> on runtime according to decoded body.
Implementation
get jsonBody => json.decode(body);