readFully function

Future<String> readFully(
  1. HttpClientResponse response
)

Implementation

Future<String> readFully(HttpClientResponse response) async {
  String body = await response.transform(utf8.decoder).join();
  return body;
}