getBody method

Future<Map<String, dynamic>> getBody()

Get body map from response

Implementation

Future<Map<String, dynamic>> getBody() async => json.decode((await utf8.decodeStream(this)).toString()) as Map<String, dynamic>;