Flutter http request issue

Issue I’m trying to check an url with the http package. The code looks like this: Future<void> checkURl() async{ final response = await http.get( Uri.parse(‘https://someurl.com’)); } The http package is imported, but somehow the IDE marks the ‘http’ invalid. This

Continue reading