본문 바로가기

Mobile/Flutter

[Flutter] Error: The argument type 'String' can't be assigned to the parameter type 'Uri'.

728x90
반응형

http 버전이 올라가면서 Uri를 사용해야 한다.

 

기존 방법

var response = await http.get(url);

변경된 방법

var response = await http.get(Uri.parse(url));

728x90
반응형