Flutter http insecure request in web chrome

Viewed 288
2 Answers

You can try to make secure call using https:

Response response = await get('https://you_api_url');
Related