extractJSON function

Future<String> extractJSON(
  1. Response response
)

Implementation

Future<String> extractJSON(http.Response response) async {
  return response.body;
}