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