I have created a List which has URLs inside it. I want to use http.get()
to read these URLs. I've tried to use http.Client()
but i did not know what to parse in.
My function:
List url = listear ; // <- URLS
http.Response response = await http.get(url);
var document = parse(response.body);
var items = document.querySelector("body");
setState(() {
valueee = items.innerHtml;
});