Here is my code
Future ppp() async {
var url ='my url here';
final response = await http.get(Uri.parse(url));
return response;
}
var data = await ppp();
var id = json.decode(json.encode(data.body));
print(id);
when i print, this is the result
[{"id":"168"}]
What i want to access is the 168