[Flutter] Future
-
[Flutter]Future Await Async웹 and 앱 프로그래밍/Flutter 2022. 12. 24. 20:42
Flutter에서 비동기 프로그램을 짜기 위해서는 비동기 함수를 표시해 주는 Async 그리고 비동기 사용 위한 Await, 지금은 없지만 미래에 (값을) 받게 해주는 Future가 존재한다. EX) Future postReply(VALUE) async { Map ask={'VALUE':VALUE}; final uri = Uri.https('example.com', 'api/fetch'/*,만약 get 사용시 파라미터지정가능{'limit': '10'}*/); final response = await http.post( uri, headers: {'Content-Type': 'application/x-www-form-urlencoded'}, body: ask , ); } 또한 이값을 나중에 받고 나중에 사..