getBody method

Future<String> getBody()

get request body -> map

Implementation

Future<String> getBody() async {
  final content = await utf8.decoder.bind(this).join();
  return content;
}