반응형
개발 환경
---------------------------------
OS : Mac
개발 툴 : android studio
개발 언어 : dart
개발 프레임워크 : flutter
---------------------------------
_dio.interceptors.add(RetryInterceptor(
dio: _dio,
logPrint: print, // specify log function (optional)
retries: 2, // retry count (optional)
retryDelays: const [ // set delays between retries (optional)
Duration(seconds: 1), // wait 1 sec before first retry
Duration(seconds: 10), // wait 2 sec before second retry
Duration(seconds: 3), // wait 3 sec before third retry
],
));
반응형
'개발노트 > Flutter' 카테고리의 다른 글
[Flutter] 뒤로가기 버튼 두번 클릭 시 앱 종료 기능 구현하기 (0) | 2023.06.05 |
---|---|
[Flutter] ListView 스크롤 안되게 하기 (0) | 2023.05.02 |
[Flutter] Keboard 올릴때 Bottom Overflowed By Pixels 에러 처리 (0) | 2023.03.20 |
[Flutter] const 경고 & 상수항 선호 경고 해결하기 (0) | 2023.03.19 |
[Flutter]RenderBox was not laid out 에러 처리 (0) | 2023.03.18 |
댓글