get method
Implementation
Future<http.Response> get() async {
http.Response response = await http.get(Uri.parse(url), headers: headers);
updateCookie(response);
return response;
//return json.decode(response.body);
}
Future<http.Response> get() async {
http.Response response = await http.get(Uri.parse(url), headers: headers);
updateCookie(response);
return response;
//return json.decode(response.body);
}