
*없고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
구글 북 api 실행시, books.googleapis.com 가 없는 주소라고 나온다길래, 전체 소스와 에러메세지를 다시 첨부하였습니다.
소스 Response res = await Dio().get( "https://www.googleapis.com/books/v1/volumes?q=$q&startIndex=0&maxResults=40", ); 실행시 아래와 같은 에러가 납니다.

void search(String q) async {
bookList.clear(); // 검색 버튼 누를때 이전 데이터들을 지워주기
if (q.isNotEmpty) {
Response res = await Dio().get( "https://www.googleapis.com/books/v1/volumes?q=$q&startIndex=0&maxResults=40", );
List items = res.data["items"];
