노마드코더님의 플러터 강의를 수강 하면서 플러터 API요청은 어떤 방식으로 이루어 지는지 알아보려고 한다. lib 폴더 구조 ├─lib ├─models │└─webtoon_model.dart ├─screens │└─home_screen.dart └─services └─api_service.dart api 요청 // api_service.dart // pub.dev에서 http를 설치 import 'package:http/http.dart' as http; class ApiService { // baseUrl과, 오늘의 웹툰을 받아올 수 있는 주소를 final로 담아준다 final String baseUrl = ''; final String today = 'today'; // JS와 같이 async, aw..