body property

Future<String> body

Get the body request as text string data.

Implementation

Future<String> get body async {
  return utf8.decode(await bytes, allowMalformed: false);
}