body property

Future<String> get body

Response body as string (fetched lazily).

Implementation

Future<String> get body async {
  _body ??= utf8.decode(await bodyBytes);
  return _body!;
}