jsonBody property
Future
get
jsonBody
JSON decoded body
of the request, as a result of a future, 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
Future<dynamic> get jsonBody async => (await this).jsonBody;