강의

멘토링

커뮤니티

Inflearn Community Q&A

choing's profile image
choing

asked

Flutter Application - Creating an App Using Public APIs (MVVM Pattern)

Get values using http library

http 쓸때 버전 변경에따른 이슈

Written on

·

303

2

 

버전 올라가면서 http 쓸때 var 로 string 값 박으면 안되는것 같은데 이런식으로 하면 되는것같네요

Uri url = Uri.https("gist.githubusercontent.com","/junsuk5/bb7485d5f70974deee920b8f0cd1e2f0/raw/063f64d9b343120c2cb01a6555cf9b38761b1d94");
http.Response response = await http.get(url);

 

flutter

Answer 1

0

survivalcoding님의 프로필 이미지
survivalcoding
Instructor

네. 맞습니다. 라이브러리 버전 올라가면서 변경되었어요. 공유 감사합니다.

choing's profile image
choing

asked

Ask a question