I have this app which prints the list of data which I got from my test database - Users table [{id: 2147483647, email: [email protected], password: test12, username: User}]
so I want to save the id, email, ..... in vars how ? also new to flutter :)
edit:
this is the function that I call in initState:
void fetchData() async {
final response = await http.get('http://192.168.137.1/fetch_data.php');
if (response.statusCode == 200) {
setState(() {
data = json.decode(response.body);
});
print(data);
}
}