├── .github ├── dependabot.yml └── workflows │ └── test-package.yml ├── .gitignore ├── AUTHORS ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example └── example.dart ├── lib └── http_retry.dart ├── pubspec.yaml └── test └── http_retry_test.dart /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-archive/http_retry/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-archive/http_retry/HEAD/.github/workflows/test-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .dart_tool/ 2 | .packages 3 | pubspec.lock 4 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-archive/http_retry/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-archive/http_retry/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-archive/http_retry/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-archive/http_retry/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-archive/http_retry/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-archive/http_retry/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /example/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-archive/http_retry/HEAD/example/example.dart -------------------------------------------------------------------------------- /lib/http_retry.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-archive/http_retry/HEAD/lib/http_retry.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-archive/http_retry/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/http_retry_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-archive/http_retry/HEAD/test/http_retry_test.dart --------------------------------------------------------------------------------