Flutter 공식 http 라이브러리에는 귀찮은 점이 하나 있다. application/x-www-form-urlencoded 타입의 post request는 별로 문제가 안 되는데, multipart/form-data 타입은 꽤 번거롭다는 것이다. 그래서, 고집 부리지 않고 그냥 dio를 사용하기로 했다. Dio 기본 http 라이브러리보다 편하다. Interceptors, Global configuration, FormData, Request Cancellation, File downloading, Timeout etc.를 제공한다. 하나의 파일을 multipart/form-data 타입으로 post request var ido = Dio(); var formData = FormData.fromMa..